close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Update Code not Working

Thread began 11/10/2012 11:23 am by Mike Perry | Last modified 11/12/2012 9:44 am by Mike Perry | 1612 views | 10 replies |

Mike Perry

Update Code not Working

Using DB - latest version.

I have one field in a different table I want to update during a Record Insert.

This is the code that should create the Update:

php:
mysql_query("UPDATE teacher SET booklist = 1 WHERE teacherID = ".$_SESSION['id']);



The update does not occur. If I replace $_SESSION['id'] with the data the update works.

Echoing both the $row_teacher['teacherID'] and $SESSION['id'] on the page show that they match.

The entire page is attached.

Thanks,

Mike

Attached Files
teacherbooksinsert.zip
Sign in to reply to this post

Jason ByrnesWebAssist

try using this code instead:

php:
$updateSQL = "UPDATE teacher SET booklist = 1 WHERE teacherID = ".$_SESSION['id']."");

    $update_CMD = mysql_query($updateSQL, $WA_connection) or die(mysql_error());
Sign in to reply to this post

Mike Perry

Originally Said By: Jason Byrnes
  try using this code instead:
php:
$updateSQL = "UPDATE teacher SET booklist = 1 WHERE teacherID = ".$_SESSION['id']."");

    $update_CMD = mysql_query($updateSQL, $WA_connection) or die(mysql_error());
  



Returns the following error:

  Unknown column 'ADMIN' in 'where clause'  



ADMIN is the $_SESSION['id'], and also the value in $row_teacherID. . .

Sign in to reply to this post

Jason ByrnesWebAssist

ok, then the value needs to be enclosed in quotes;

php:
$updateSQL = "UPDATE teacher SET booklist = 1 WHERE teacherID = '".$_SESSION['id']."'");
Sign in to reply to this post

Mike Perry

Originally Said By: Jason Byrnes
  ok, then the value needs to be enclosed in quotes;

php:
$updateSQL = "UPDATE teacher SET booklist = 1 WHERE teacherID = '".$_SESSION['id']."'");
  



Syntax error -- so many quotes, so little time. . .

Sign in to reply to this post

Jason ByrnesWebAssist

what is the exact error, it should indicate a line number? and include a copy of the page.

Sign in to reply to this post

Mike Perry

Originally Said By: Jason Byrnes
  what is the exact error, it should indicate a line number? and include a copy of the page.  


The syntax error is flagged in DW along with a Dynamically-related files error -- attempt to run in browser gives a blank screen

Page attached. .

Attached Files
teacherbooksinsert.zip
Sign in to reply to this post

Jason ByrnesWebAssist

hmmm, i dont see a syntax error in the code.


may try using this for the $updateSQL:

php:
$updateSQL = "UPDATE teacher SET booklist = 1 WHERE teacherID = ".GetSQLValueString($_SESSION['id'], "text")."");
Sign in to reply to this post

Mike Perry

Originally Said By: Jason Byrnes
  hmmm, i dont see a syntax error in the code.


may try using this for the $updateSQL:

php:
$updateSQL = "UPDATE teacher SET booklist = 1 WHERE teacherID = ".GetSQLValueString($_SESSION['id'], "text")."");
  



Okay -- fixed one problem, created another.

The following code updates the teacher table:

  $updateSQL = "UPDATE teacher SET booklist = 1 WHERE teacherID = ".GetSQLValueString($_SESSION['id'], "text");  



However the [Insert_ID] used for the redirect reports a zero ('0"), and the redirect to the Details page reports that the record has been deleted.

Mike

Sign in to reply to this post

Jason ByrnesWebAssist

change the code order:

php:
$updateSQL = "UPDATE teacher SET booklist = 1 WHERE teacherID = '".$_SESSION['id']."'");

    $update_CMD = mysql_query($updateSQL, $WA_connection) or die(mysql_error());  
  $_SESSION[$WA_sessionName] = mysql_insert_id($WA_connection);




to:

php:
$_SESSION[$WA_sessionName] = mysql_insert_id($WA_connection);

$updateSQL = "UPDATE teacher SET booklist = 1 WHERE teacherID = '".$_SESSION['id']."'");
    $update_CMD = mysql_query($updateSQL, $WA_connection) or die(mysql_error());
Sign in to reply to this post
loading

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...