dlusiondone Posted May 21, 2009 Share Posted May 21, 2009 Hi all, Seems like a small problem but i'm new to this so can't solve it as easily as I thought. Simply trying to print data from a table but keep getting the return result "Array". Any suggestions. Thanks in advance! Code on the site page is as follows: <?php include ('server.php'); $result = mysql_query("select * from movies where movieID = 1") or die (mysql_error()); $row = mysql_fetch_array($result); print("name: ".$row); ?> And code from the server connection page is as follows: $server = "localhost"; $user = "*****"; $p_word = "*****"; $db_name = "picadilly"; $link = mysql_connect($server, $user, $p_word); $select = mysql_select_db($db_name, $link); Quote Link to comment Share on other sites More sharing options...
paparts Posted May 21, 2009 Share Posted May 21, 2009 try this out: echo $row['<name of the field>']; example: echo $row['title']; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.