Jump to content

small issue


dlusiondone

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.