Aşağıdaki kod benim veritabanına iki kayıtları ekleme, ama ben sadece birini eklemek istiyorum. Neden iki satır ekleme olduğunu?
<?
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$i=1;
while($i<=1)
{
if (isset($_POST['submit']))
{
$sql="INSERT INTO customers
(company, salutation, first_name,
last_name, phone, email, fax,
street, town, county, postcode,
type, notes)
VALUES
('$_POST[company]',
'$_POST[salutation]',
'$_POST[first_name]',
'$_POST[last_name]',
'$_POST[phone]',
'$_POST[fax]',
'$_POST[email]',
'$_POST[street]',
'$_POST[town]',
'$_POST[county]',
'$_POST[postcode]',
'$_POST[type]',
'$_POST[notes]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
}
$i++;
}
?>