Mam skrypt który działał , ale po dodaniu trzeciej zmiennej przestał .. Pewnie coś pomieszałem w składni ..
Proszę o pomoc ...
<?php $imie = $_POST['imie']; $email = $_POST['email']; $miasto = $_POST['miasto']; if($imie and $email and $miasto ) { $ins = @mysql_query('INSERT INTO `test` (`imie`,`email`,`miasto`) VALUES("'.$imie.'", "'.$email.'" , "'.$miasto.'")') or die(mysql_error()); } ?>