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 = a

Re: [PHP] Struggling with code

2002-12-05 Thread liljim
our 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 of the suggestions. My most recent

Re: [PHP] Struggling with code

2002-12-05 Thread Hugh Danaher
nal Message - From: "Ben C." <[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 >

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 of the

RE: [PHP] Struggling with code

2002-12-05 Thread Ben C.
I have incorporated most of the suggestions. My most recent code is: -Original Message- From: Hugh Danaher [mailto:[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

Re: [PHP] Struggling with code

2002-12-05 Thread Hugh Danaher
: <[EMAIL PROTECTED]> Sent: Wednesday, 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

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 m

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. &

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 2

Re: [PHP] Struggling with code

2002-12-04 Thread Hugh Danaher
"', WHERE id= $id "; // mysql needs single quote marks ( ' ) around input values that are not numbers. 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

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", "use

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> $db_name = "db1"; BC> $table_name = "user"; BC> $connection = @mysql_connect("loca