04-01-2008, 10:07 AM
|
#4 (permalink)
|
|
The Contributor
Join Date: Sep 2007
Location: Finland
Posts: 45
Thanks: 3
|
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);
?>
|
|
|