замучался уже) подскажите что тут не так?
$clientData = array();
$query = "INSERT INTO `clients` (`store_id`, `creator_id`, `name`, `fullName1`, `sex1`, `birthDate1`, `retirementAge1`, `fullName2`, `sex2`, `birthDate2`, `retirementAge2`, `status`)
VALUES ($store_id, '54', 'AC9 Test Plan', 'Mr. Burns', '1', '1960-01-01 00:00:00', '65', '', '2', NULL, '0', '1')";
$sql = $mysqli->query($query) or die(LogEvents('SQL_Error',$mysqli->error));
$clientID = $mysqli->insert_id;
//Insert into plans
$plansIDs = array();
$plansOldIDs = array();
$query = "SELECT *
FROM `plans`
WHERE `client_id` = 72";
$sql = $mysqli->query($query) or die(LogEvents('SQL_Error',$mysqli->error));
while($row = $sql->fetch_assoc())
{
$plansOldIDs[] = $row['id'];
##############################################
#plans
##############################################
$query= "INSERT INTO `plans` (`client_id`, `creator_id`, `status`, `name`, `preTaxRate`, `preTaxRate2`, `preTaxAge`, `postTaxRate`, `postTaxRate2`, `postTaxAge`, `heirIncomeTaxRate`, `heirIncomeTaxRate2`, `heirIncomeTaxAge`, `capitalGainsTaxRate`, `capitalGainsTaxRate2`, `capitalGainsTaxAge`, `dividendTaxRate`, `dividendTaxRate2`, `dividendTaxAge`, `illustrateFor`, `clonedFrom`)
VALUES ({$clientID}, '{$row['creator_id']}', '{$row['status']}', '{$row['name']}', '{$row['preTaxRate']}', '{$row['preTaxRate2']}', '{$row['preTaxAge']}', '{$row['postTaxRate']}', '{$row['postTaxRate2']}', '{$row['postTaxAge']}', '{$row['heirIncomeTaxRate']}', '{$row['heirIncomeTaxRate2']}', '{$row['heirIncomeTaxAge']}', '{$row['capitalGainsTaxRate']}', '{$row['capitalGainsTaxRate2']}', '{$row['capitalGainsTaxAge']}', '{$row['dividendTaxRate']}', '{$row['dividendTaxRate2']}', '{$row['dividendTaxAge']}', '{$row['illustrateFor']}', '{$row['clonedFrom']}' )";
$sqlres = $mysqli->query($query) or die(LogEvents('SQL_Error',$mysqli->error));
$plansIDs[$row['id']] = $mysqli->insert_id;
практически всё тут не так
А можно код убрать на пастбин?
Пастбин?
Предлагаю ознакомиться с правилами чата: https://t.me/phpGeeks/764859
/rules
UP - https://pastebin.com/Gikvar9L
Обсуждают сегодня