Results 1 to 3 of 3
  1. #1
    Join Date
    Dec 2004
    Location
    UK
    Posts
    534
    Tokens
    141

    Default Little coding quetion

    How do I get it to just display the latest article in the below script:-

    <?php
    require('connect.php');
    require('functions.php');
    ?>
    <LINK href="/default.css" rel="stylesheet" type="text/css">
    <center><b><u>Radio News</b></u></center><p>

    <?php
    $result = mysql_query("SELECT poster, ip, date, title, article FROM rp_news ORDER BY id DESC");
    while($row = mysql_fetch_assoc($result)){
    echo "<font color='black'><b>Title:</b></font> ".$row['title']."<br/>
    <font color='black'><b>Posted By:</b></font> DJ ".$row['poster']."<p>
    <font color='black'><b>Article:</b></font> ".$row['article']."<br/>
    <p><div align='center'><hr width='70%'></div><p>";
    }
    ?>

    <?php require('bottom.php');?>
    Post Count: :eusa_danc 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 1000 :eusa_danc

  2. #2
    Join Date
    Jul 2006
    Location
    Athens
    Posts
    842
    Tokens
    0

    Default

    PHP Code:
                                  <?php
    require('connect.php');
    require(
    'functions.php');
    ?>
    <LINK href="/default.css" rel="stylesheet" type="text/css">
    <center><b><u>Radio News</b></u></center><p>

    <?php
    $result 
    mysql_query("SELECT poster, ip, date, title, article FROM rp_news ORDER BY id DESC LIMIT 1");
    while(
    $row mysql_fetch_assoc($result)){
    echo 
    "<font color='black'><b>Title:</b></font> ".$row['title']."<br/>
    <font color='black'><b>Posted By:</b></font> DJ "
    .$row['poster']."<p>
    <font color='black'><b>Article:</b></font> "
    .$row['article']."<br/>
    <p><div align='center'><hr width='70%'></div><p>"
    ;
    }
    ?>

    <?php require('bottom.php');?>
    Limit 1 in your query

    Have Fun


  3. #3
    Join Date
    Dec 2004
    Location
    UK
    Posts
    534
    Tokens
    141

    Default

    Ty Mate!
    Post Count: :eusa_danc 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 1000 :eusa_danc

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •