tecdesign Posted October 5, 2006 Share Posted October 5, 2006 In a Mysql statement I want to read the variable as part of the mysql statement in the php coding. Is this possible? E.g $sql = mysql_query("INSERT INTO `transactions` ( `transid` , `username` , `trans_type` , `trans_name` , `trans_method` , `ref` , `code` , `amount` , `date` ) VALUES (NULL , 'asdf', '."$new_string".')"); Link to comment https://forums.phpfreaks.com/topic/23053-variable-and-mysql/ Share on other sites More sharing options...
Hi I Am Timbo Posted October 5, 2006 Share Posted October 5, 2006 it is possible but you have to have the same number of fields in into and value. And, your "'s and concatenation are messed up. it should look like this:INSERT INTO `transactions` ( `transid` , `username` , `trans_type` , `trans_name` , `trans_method` , `ref` , `code` , `amount` , `date` )VALUES (NULL , 'asdf', '".$new_string."')"); Link to comment https://forums.phpfreaks.com/topic/23053-variable-and-mysql/#findComment-104132 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.