Jump to content

[SOLVED] how?


tritus

Recommended Posts

i am making a news script for my site and i want to only pull the latest entry into the database... how do i do that?

 

my code:

 

<?php

 

    mysql_connect("localhost", "$db_user", "$dbpass");

    mysql_select_db(tritusco_news);

    $sql = mysql_query("SELECT * FROM news");

    while($result = mysql_fetch_array($sql)) {

    echo " <b>Date:</b> " .$result["date"] . "<br>";

echo " <b>Subject:</b> " .$result["subject"] . "<br>";

    echo " <b>Body:</b> " .$result["body"] . " <br><br>----------------<br><br>";

    }

 

?>

Link to comment
Share on other sites

Two options.

 

1.) Add a limit statement to your query:

 

$sql = mysql_query("SELECT * FROM news LIMIT 1");

 

2.) Dont use a while loop. Instead of:

 

<?php
while($result = mysql_fetch_array($sql)) {
//code here
}
?>

 

Just do:

 

<?php
$result = mysql_fetch_array($sql);
//code here
?>

Link to comment
Share on other sites

<?php

   mysql_connect("localhost", "$db_user", "$dbpass");
   mysql_select_db(tritusco_news);
   $sql = mysql_query("SELECT * FROM news");
   $result = mysql_fetch_array($sql)) {
   echo " Date:$result['date']"
;
  echo " Subject:$result['subject'] . "
;
   echo " Body: $result['body']  " 

;
   }

?> 

 

Link to comment
Share on other sites

this grabs one, but it isnt the latest entry

 

 

Two options.

 

1.) Add a limit statement to your query:

 

$sql = mysql_query("SELECT * FROM news LIMIT 1");

 

2.) Dont use a while loop. Instead of:

 

<?php
while($result = mysql_fetch_array($sql)) {
//code here
}
?>

 

Just do:

 

<?php
$result = mysql_fetch_array($sql);
//code here
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.