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