Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to PHP and MySQL and I'm struggling with the problem below:

$sql = "UPDATE Pharm_Log set text = ". $bloodtest . " WHERE patient = " . $patientid .;
    if(is_resource($sql) and mysql_num_rows($sql)>0){

The problem occurs when I try to close my SQL statement. I know it's something to do with brackets and semi colons but every time I change one thing, it messes up another. Could somebody please help me?

share|improve this question
1  
I think it is the last dot just before the semi colon, try removing that – Jason Feb 12 at 12:08
1  
Also, $sql is a string, not a resource. You need to execute the query first to get a resource. And mysql_num_rows() is not suitable for UPDATE queries. – Arjan Feb 12 at 12:11
All mysql_* functions are deprecated. Use mysqli or PDO functions instead. – Arjan Feb 12 at 12:14

5 Answers

Remove the dot before the semicolon.

share|improve this answer

Yeah its the last . thats causing a syntax error. Plus you need to surround non int values in quotes, Also its important that you dont forget to add mysql_real_escape_string else problems will arise, you should also use PDO or mysqli with prepared querys.

<?php 
$sql = "UPDATE Pharm_Log 
        SET `text`='".mysql_real_escape_string($bloodtest)."' 
        WHERE patient = '".mysql_real_escape_string($patientid)."'";
?>
share|improve this answer

Firsdt, remove the last dot on the first line, since you aren't connecting any string at the end. Should look like this:

$sql = "UPDATE Pharm_Log set text = ". $bloodtest . " WHERE patient = " . $patientid;

Are you doing a query to the SQL server? If not, the variable $sql doesn't do anything, so add:

$result = mysql_query($sql);

And change your last code line to process the result of the query instead

if(is_resource($result) && mysql_num_rows($result) > 0)
share|improve this answer

here are the things you need to do:

  • remove the last period before the semi colon
  • wrap the string literal with single quotes
  • execute the query using mysql_query

code:

$sql = "UPDATE Pharm_Log set text = '$bloodtest'  WHERE patient = " . $patientid;
$result = mysql_query($sql);
if(is_resource($result ) and mysql_num_rows($result )>0) { ... }

As a sidenote, the query is vulnerable with SQL Injection if the value(s) of the variables came from the outside. Please take a look at the article below to learn how to prevent from it. By using PreparedStatements you can get rid of using single quotes around values.

share|improve this answer

You dont need . at the end. Change it into,

$sql = "UPDATE Pharm_Log set text = ". $bloodtest . " WHERE patient = " . $patientid;
share|improve this answer
Guys thanks alot for the quick help! – user2064630 Feb 12 at 12:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.