Jump to content

where clause not working probably simple answer.


vnichol

Recommended Posts

I think that the code is mostly correct, but it passes through and says that it updated the field, but actually it is not adding any information to the table. My logic may be off, I am really not sure. Any help would be appreciated. Thanks

 

include("include/session.php");

$temp =$session->username; // variable that holds user who is logged in.

$result = mysql_query("SELECT * FROM profile WHERE 'username'='$temp'"); // username is table col with information

if(mysql_num_rows($result)!==0)

{

$sql="INSERT INTO profile (username, fname, lname, age, city, occupation)

VALUES

('$_POST[username]','$_POST[fname]','$_POST[lname]','$_POST[age]','$_POST[city]','$_POST[occupation]')";

echo "1 record added!";}

else

{

$sqlUserExists="update profile set fname = $_POST[fname], lname = $_POST[lname], Age = $_POST[age], city = $_POST[city], occupation = $_POST[occupation] where username = $_POST[‘username’]";

echo "Profile Updated!"; }

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.