View Single Post
Old 04-01-2008, 10:07 AM   #4 (permalink)
marxx
The Contributor
 
marxx's Avatar
 
Join Date: Sep 2007
Location: Finland
Posts: 45
Thanks: 3
marxx is on a distinguished road
Default

Well if you have to get just one of them then try this.
PHP Code:
<?php
include ("connect.php");

mysql_select_db("test_db"$con);

$result mysql_query("SELECT * FROM test");
$res mysql_fetch_array($result);

print(
"<td> " $res['test the name'] . " </td>");

mysql_close($con);

?>
Send a message via MSN to marxx
marxx is offline  
Reply With Quote
The Following User Says Thank You to marxx For This Useful Post:
Face_Of_Boe (01-06-2009)