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); Link to comment https://forums.phpfreaks.com/topic/159105-small-issue/ 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']; Link to comment https://forums.phpfreaks.com/topic/159105-small-issue/#findComment-839086 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.