|
-
Jul 16th, 2005, 07:39 AM
#1
Thread Starter
Hyperactive Member
[RESOLVED] mysql Update code not working
hi i am trying to run an update command but it keeps failing
Code:
<?php
$updatetext = $HTTP_POST_VARS['welcomeinfo'];
$conn=@mysql_connect("localhost", "ckids_ckids1", "christiankids")
or die("MYSQL Connection Error");
$rs = @mysql_select_db("ckids_wcms1", $conn)
or die("Database Error");
$sql = "UPDATE `hompage` SET `welcome` = '$updatetext' WHERE `id` = 1 LIMIT 1";
mysql_query($sql)
or die("Error: Update Failed");
echo "Updated";
?>
its keeps showing error update failed
i have tried many things and cant get it to work, i know that $updatetext contains a value as i have echoed this in trying to fix it
-
Jul 16th, 2005, 07:11 PM
#2
Re: mysql Update code not working
Try the below. HTH 
PHP Code:
$sql = "UPDATE hompage SET welcome = '$updatetext' WHERE id = 1 LIMIT 1";
-
Jul 18th, 2005, 01:31 AM
#3
Re: mysql Update code not working
Back ticks ` should only be used for table names. Not field names.
-
Jul 18th, 2005, 01:32 AM
#4
Re: mysql Update code not working
You can also display the error from mysql by using the mysql_error()
-
Jul 19th, 2005, 03:20 PM
#5
Thread Starter
Hyperactive Member
Re: mysql Update code not working
-
Jul 19th, 2005, 04:08 PM
#6
Re: mysql Update code not working
What is the error mysql is giving you?
-
Jul 19th, 2005, 04:27 PM
#7
Thread Starter
Hyperactive Member
Re: mysql Update code not working
the mysql_error() wouldnt work, but have fixed it now, it was a spelling error in the table, thanks everyone
-
Jul 20th, 2005, 04:03 AM
#8
Re: [RESOLVED] mysql Update code not working
If the table name was incorrect then mysql_error() should have told you that
-
Jul 20th, 2005, 05:21 AM
#9
Thread Starter
Hyperactive Member
Re: [RESOLVED] mysql Update code not working
yes i know it should have, and i set it up like it showed, but for some reason it didnt like it, might try it again one day when my code goes wrong
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|