Jump to content

How to get more values from database


TheSky

Recommended Posts

<?php
include("config.php");
$sql=mysql_query("SELECT * FROM uudised ORDER BY id DESC LIMIT 0,5") or die(mysql_error());
$x=0;
while($row=mysql_fetch_array($sql))
{
echo ($x+1).') '.$row['uudis'].'<br />';
$x++;
}
?>

Hey how should i get more data from uudised i want get date_added also but how i should do

Link to comment
https://forums.phpfreaks.com/topic/233002-how-to-get-more-values-from-database/
Share on other sites

oh i did use

echo  $row['date_added'].($x+1).') '.$row['uudis'].'

';

and it did work

Right since you selected *, which is every column in that table, then you can retrieve anything from the result set, which was set to $row, in that format.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.