Jump to content

weird sql + vars


birdie

Recommended Posts

hi, i'm having problems with this sql code, i just cant find the problem with it.

[code]
$sql = "INSERT INTO `matches` ( `opp` , `time` , `result` , `ip` , `username` ) VALUES ( '$opp' , '$time' , '$result' , '$ip' , '$username' )";
[/code]

if i mysql_query() it, it doesnt insert. the vars are int, varchar with the limits well within boundarys.

Any ideas? thanks a lot [img src=\"style_emoticons/[#EMO_DIR#]/smile.gif\" style=\"vertical-align:middle\" emoid=\":smile:\" border=\"0\" alt=\"smile.gif\" /]
Link to comment
Share on other sites


[code]
$sql = "INSERT INTO matches ( 'opp' , 'time' , 'result' , 'ip' , 'username' ) VALUES ( '$opp' , '$time' , '$result' , '$ip' , '$username' )";
[/code]

its the quotes most of the time. I run into is all the time use phpadmin and to run sql querys have remove most of the qoutes it puts in
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.