member_data セッションを関数に解析しようとしていますが、これを行う方法がわかりません。私の機能は
function createTransaction(){
// Insert into the transactions table
$query1 = mysql_query("INSERT INTO transactions (mem_id, OrderDate, Ship_Phone, Ship_Address, Ship_City, Ship_County, Ship_PostCode, Ship_Country) VALUES()");
if($query1) {
// Get the highest ID in the transactions table. This should be the ID of the row we just inserted.
$tempInfo = mysql_query("SELECT `order_id` FROM `transactions` ORDER BY `order_id` DESC LIMIT 1");
$tempInfo = mysql_fetch_assoc($tempInfo);
$orderId = $tempInfo['order_id'];
// Insert into the transaction details table.
$query2 = mysql_query("INSERT INTO `transactionDetails` (Order_ID, Product_ID, Price, Quantity) VALUES({$orderId}, {$item_id}, {$price}, {$each_item})");
if($query2) {
// Success.
} else {
// Error occurred.
echo 'Query2 Error: ' . mysql_error();
}
} else {
// Error occurred.
echo 'Query1 Error: ' . mysql_error();
}
}
値がある場所 (3 行目) に、セッションからデータを挿入したい
$session_mem_id = $_SESSION['mem_id'];
$member_data = member_data($session_mem_id, 'mem_id', 'mem_email', 'mem_password', 'mem_address', 'mem_city', 'mem_postcode', 'mem_county', 'mem_country', 'mem_first_name', 'mem_last_name', 'password_recover', 'allow_email', 'admin', 'mem_tel');
どうすればいいですか?