Jump to content

Query Works In Query Browser But Not In Php


Staggan

Recommended Posts

Hello

 

I am trying to run a query on a php page but I am getting an error... although the query works fine in MySQL query browser

 

This is the query

 


$result = mysql_query("INSERT INTO challenge ( challenge_game_length, challenger_team_id, opponent_team_id, challenge_due_timestamp_gmt) VALUES  ( 20, $c1, $c2, UNIX_TIMESTAMP());");


 

 

This is the error

"You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' , UNIX_TIMESTAMP())' at line 1"

 

I have tried replacing the timestamp with a valid number instead... but get the same error

 

Any ideas?

Link to comment
Share on other sites

The error is because your $c2 variable is empty or it contains a non-numerical value that is breaking the syntax of the query statement. You need to form your sql query statement in a php variable ($query) and echo it so that you can see exactly what it contains.

 

Where is the $c2 variable being set at and why didn't your validation logic prevent the query from being executed without a valid number in $c2 (opponent_team_id)?

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.