Hi,
How can i get the last inserted row out from the mysql DB?
...
$sql_content=mysql_query("select * from $co",$connection);
while($row=mysql_fetch_array($sql_content))
{
echo "
...
<p>Last Winner: $row[name]</p>
...
";
}
...
Thx for any help