Jump to content
MakeWebGames

Recommended Posts

Posted

QUERY 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 '' at line 1

Query was SELECT * FROM inventory WHERE inv_userid=1 AND inv_itemid=

this is all it tells me

is this because of

                  item_remove($ir['userid'], $r['inv_itemid'],  $qty);

or this

 

if(!$_POST['add'])
  {
  $query = array();
  $db->query("SELECT *
           FROM `inventory` mi
           LEFT JOIN `items` i
           ON mi.inv_itemid = i.itmid
           WHERE mi.inv_userid = '".$ir['userid']."'");

  $le = array();
  echo "<table width = '750px' class = 'rounded'><tr><td align = 'center'>
        <table width = '100%'><tr bgcolor = #999999 style = 'font-weight:800;'><td>Item</td><td>Qty</td><td>Add</td>
        </tr>";
  $num=0;

 

or could it be global_func.php

Posted

*sigh*

Query starting on line 4 (from the snippet posted above)

$db->query("SELECT `mi`.*, `i`.*
           FROM `inventory` AS `mi`
           LEFT JOIN `items`AS `i`
           ON `mi`.`inv_itemid` = `i`.`itmid`
           WHERE `mi`.`inv_userid` = ".$ir['userid']);

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.   Paste as plain text instead

  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...