Hello...
I want to connect to Db , retrive and display data from a specific table...
The table name is "nuke_authors" and the field I wish to see in php page is named"name"
What is the code I should use..?
I have tried the following ..It doesnt work..
<?php
$db = mysql_connect("castle", "username", "paswd");
mysql_select_db("castle",$db);
$query = mysql_query("select * from nuke_authors ");
if ($row = mysq_fetch_row($query)) {
print_r ($row
?>
==================================
thanks in advance
Regards