blanktarget Posted November 15, 2003 Share Posted November 15, 2003 I have a listing that needs to added from a content management system. The add script is getting the row\'s id from the page before it $id=$_GET[\'id\']; what I want to do is have that number which exists in a table for temporary listings and move it (with the \'add\' script) into the permament \'listing\' table from the content management system. $query="INSERT INTO listing (business, name, address, phone, website, email,) VALUES (\'business\',\'name\', \'address\', \'phone\', \'website\', \'email\',) FROM temp_listing WHERE temp_listing_id=\'$id\'" $result=mysql_query($query); Link to comment https://forums.phpfreaks.com/topic/1368-adding-rows-to-another-table-where-values-are-a-variable/ Share on other sites More sharing options...
Guest Weirdan Posted November 15, 2003 Share Posted November 15, 2003 insert into listing (business, name, address, phone, website, email) select business, name, address, phone, website, email from temp_listing where temp_listing_id=\'$id\' ? Link to comment https://forums.phpfreaks.com/topic/1368-adding-rows-to-another-table-where-values-are-a-variable/#findComment-4531 Share on other sites More sharing options...
blanktarget Posted November 15, 2003 Author Share Posted November 15, 2003 Thanks. That worked well, I had to change \"\'$id\'\" to \' . $id \' Link to comment https://forums.phpfreaks.com/topic/1368-adding-rows-to-another-table-where-values-are-a-variable/#findComment-4532 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.