[PHP] RE: Solved [PHP] mysql_fetch_row problem

2003-01-23 Thread Bryan Brannigan
n" <[EMAIL PROTECTED]> > To: "Php List (E-mail)" <[EMAIL PROTECTED]> > Sent: Thursday, January 23, 2003 8:03 AM > Subject: [PHP] mysql_fetch_row problem > > > Can someone tell me what I'm doing wrong with the following > code. What I am > tr

Re: [PHP] mysql_fetch_row problem

2003-01-23 Thread Rick Emery
uot; <[EMAIL PROTECTED]> Sent: Thursday, January 23, 2003 8:03 AM Subject: [PHP] mysql_fetch_row problem Can someone tell me what I'm doing wrong with the following code. What I am trying to do with this is insert some data from a form into a database. Then I am querying another databa

RE: [PHP] mysql_fetch_row problem

2003-01-23 Thread Matt Schroebel
> -Original Message- > From: Bryan Brannigan [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 23, 2003 9:03 AM > Subject: [PHP] mysql_fetch_row problem > $db = mysql_connect("localhost", "webapp"); > mysql_select_db("helpdesk",$db); &

[PHP] mysql_fetch_row problem

2003-01-23 Thread Bryan Brannigan
Can someone tell me what I'm doing wrong with the following code. What I am trying to do with this is insert some data from a form into a database. Then I am querying another database to retrieve the email addresses related to $location. This is the error I get: Warning: mysql_fetch_row(): suppl

Re: [PHP] mysql_fetch_row() problem

2002-10-06 Thread Intruder
ttc> $get_anames = mysql_query("SELECT `name` FROM `artists` WHERE `artist_id` = ttc> '$id'"); ttc> $anames = mysql_fetch_row($get_names);// !!! ERROR LINE !!! of course it is an error! check your spelling !!! $get_names != $get_anames ; -- PHP General Mailing List (http://www.php.

[PHP] mysql_fetch_row() problem

2002-10-06 Thread tony
I have this small bit of code to fetch the latest songs submitted by a user on theire profile for my tab website, here is the code: 10 Latest Songs Submited by $latsongs[1]$anames[0]($latsongs[3])"); } ?> The problem is with the line i labelled !!! ERROR LINE !!!, to fetch the artist name. The