Jump to content

variable and mysql


tecdesign

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.