Log in

View Full Version : help with a query , is this correct ?


corsacrazy
03-22-2005, 05:41 PM
here is the query


if ($_GET['option']=="relist") {
$relistId = $_GET['id'];
$today = date( "Y-m-d H:i:s", time() );
$closingdate = closingdate($today,$_GET['duration']);
$relistAuction = mysql_query("INSERT INTO probid_auctions
(itemname, description, picpath, quantity, auctiontype, bidstart, rp,
rpvalue, bn, bnvalue, bi, bivalue, duration, country, zip, sc, scint, pm,
category, active, payment_status, startdate, enddate, closed, keywords,
nrbids, maxbid, clicks, ownerid, hpfeat, catfeat, bolditem, hlitem, private,
currency, swapped, postage_costs, insurance, type_service, isswap, acceptdirectpayment,
directpaymentemail, addlcategory, deleted) SELECT
itemname, description, picpath, quantity, auctiontype, bidstart, rp,
rpvalue, bn, bnvalue, bi, bivalue, duration, country, zip, sc, scint, pm,
category, active, payment_status, startdate, enddate, closed, keywords,
nrbids, maxbid, clicks, ownerid, hpfeat, catfeat, bolditem, hlitem, private,
currency, swapped, postage_costs, insurance, type_service, isswap, acceptdirectpayment,
directpaymentemail, addlcategory, deleted
FROM probid_auctions b WHERE b.id='".$relistId."'") or die(mysql_error());
$newId = mysql_insert_id();

and here is the error i get from it :(

INSERT TABLE 'probid_auctions' isn't allowed in FROM table list


any ideas ?

tnguy3n
03-22-2005, 05:58 PM
there's a space in between probid_auctions and b in line
FROM probid_auctions b WHERE b.id='".$relistId."'") or die(mysql_error());
maybe that causes the error.

corsacrazy
03-22-2005, 06:43 PM
afraid that didnt sort it mate :(

Xenon
03-22-2005, 06:43 PM
you cannot insert into the table you are using within your select query.