Re: [PHP] Struggling with code

2002-12-05 Thread Jason Wong
On Thursday 05 December 2002 15:44, Ben C. wrote: I am now getting the following error: Warning: Supplied argument is not a valid MySQL-Link resource in /home/httpd/vhosts/localhost/httpdocs/data/up.php on line 21 Why do you think that is? Try using mysql_error() after each of your

Re: [PHP] Struggling with code

2002-12-05 Thread Hugh Danaher
, December 04, 2002 11:44 PM Subject: RE: [PHP] Struggling with code I am now getting the following error: Warning: Supplied argument is not a valid MySQL-Link resource in /home/httpd/vhosts/localhost/httpdocs/data/up.php on line 21 Why do you think that is? -Original Message

RE: [PHP] Struggling with code

2002-12-05 Thread Ben C.
:[EMAIL PROTECTED]] Sent: Thursday, December 05, 2002 12:07 AM To: Ben C. Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Struggling with code please post lines 20 and 21, get rid of all @, the comma after url='$url' and show your most recent code. Others have posted and given you good advice, you should

RE: [PHP] Struggling with code

2002-12-05 Thread Ben C.
Hugh, I took away the comma from $url and it works. Everyone, Thanks for your help! Ben -Original Message- From: Ben C. [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 05, 2002 12:15 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Struggling with code I have incorporated most

Re: [PHP] Struggling with code

2002-12-05 Thread Hugh Danaher
. [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 05, 2002 12:17 AM Subject: RE: [PHP] Struggling with code Hugh, I took away the comma from $url and it works. Everyone, Thanks for your help! Ben -Original Message- From: Ben C. [mailto:[EMAIL PROTECTED]] Sent

Re: [PHP] Struggling with code

2002-12-05 Thread liljim
Thursday, December 05, 2002 12:15 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Struggling with code I have incorporated most of the suggestions. My most recent code is: ? $db_name = db1; $table_name = user; $connection = mysql_connect(localhost, user, password) or die(Couldn't connect.

Re: [PHP] Struggling with code

2002-12-05 Thread Jason Wong
On Thursday 05 December 2002 16:43, Hugh Danaher wrote: Great to hear it works! I'd still consider using addslashes and the only way I've gotten it to work is to write them in like the following: url='.addslashes($url).' Looks messy but works. Messy indeed ;) Why not $url =

[PHP] Struggling with code

2002-12-04 Thread Ben C.
I am struggling with the code below. I keep getting the error Couldn't execute query. Please help me out, let me know where I am going wrong. ? $db_name = db1; $table_name = user; $connection = @mysql_connect(localhost, user, password) or die(Couldn't connect.); $db =

Re: [PHP] Struggling with code

2002-12-04 Thread Tom Rogers
Hi, Thursday, December 5, 2002, 3:24:15 PM, you wrote: BC I am struggling with the code below. I keep getting the error Couldn't BC execute query. Please help me out, let me know where I am going wrong. BC ? BC $db_name = db1; BC $table_name = user; BC $connection = @mysql_connect(localhost,

Re: [PHP] Struggling with code

2002-12-04 Thread Jason Wong
On Thursday 05 December 2002 13:24, Ben C. wrote: I am struggling with the code below. I keep getting the error Couldn't execute query. Please help me out, let me know where I am going wrong. ? $db_name = db1; $table_name = user; $connection = @mysql_connect(localhost, user, password)

Re: [PHP] Struggling with code

2002-12-04 Thread Hugh Danaher
. The addslashes keeps // names like Al Scar Face Capone or Nina O'Clock from causing your script to puke. Hugh - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 04, 2002 9:52 PM Subject: Re: [PHP] Struggling with code On Thursday 05 December

Re: [PHP] Struggling with code

2002-12-04 Thread Richard Baskett
Get rid of the double quotes around your variables so: $sql = UPDATE $table_name SET name='$name', lname='$lname', mobil='$mobil' etc etc etc Cheers! Rick Sir my concern is not whether God is on our side. My great concern is to be on God's side. - Abraham Lincoln On Thursday 05 December 2002

RE: [PHP] Struggling with code

2002-12-04 Thread Ben C.
9:53 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Struggling with code On Thursday 05 December 2002 13:24, Ben C. wrote: I am struggling with the code below. I keep getting the error Couldn't execute query. Please help me out, let me know where I am going wrong. ? $db_name = db1