Witam,
chcę żeby po kliknięciu przycisku robił się update danego pola użytkownika w tabeli, ale żeby pole house_id (tabela 'customers') miało takie id jakie zostanie nadane poprzez auto_increment w poprzednim insercie (tabela 'customer_house').
if (isset($_POST['buy_house_premium01'])) {
$query="INSERT INTO customer_house SET user='".$_POST['user']."', name='".$_POST['name']."'";
$query2="UPDATE customers SET wallet=wallet-'".$_POST['house_price']."', house='".$_POST['house']."' WHERE user='".$_POST['user']."'"";
mysql_query($query);
mysql_query($query2);