if ($postaction=="edit")

-----Original Message-----
From: ROBERT MCPEAK [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 20, 2002 11:44 AM
To: [EMAIL PROTECTED]
Subject: [PHP] mysql update help needed


Can somebody straighten this out for me?

I can't get the update to work.  I'm sure the variables are being
passed to the code.  Thanks!

if ($postaction==edit)
        
        {
                echo "it fired<Br>";
        // process form

                        $db = mysql_connect("myhost, "myuname",
"mypword");

                         mysql_select_db("mydb");

                        $sql = "UPDATE mytable SET
img_url=$img_url,visitdate=$visitdate,img_group=$img_group,display=$display,
caption=$caption where id = $id";

                        $result = mysql_query($sql);
                        
                        echo "<center>";
                        echo "Thank you! Information entered.\n";
                        echo "</center>";
        
        }

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to