Alıntı
<?php
$localhost="localhost";
$user="root";
$pw="";
$vt="testveriekleme";
$baglan = mysql_connect($localhost, $user, $pw);
$vtsec = mysql_select_db($vt, $baglan);
if ($_POST) {
$a1 = $_POST["1"];
$tarihsaat=date("Y-m-d h:i:s");
$a2 = $_POST["2"];
$a3 = $_POST["3"];
$a4 = $_POST["4"];
$a5 = $_POST["5"];
$a6 = $_POST["6"];
$a7 = $_POST["7"];
$a8 = $_POST["8"];
$a9 = $_POST["9"];
$a10 = $_POST["10"];
$ekle=mysql_query("INSERT INTO test (a1, tarih, a2, a3, a4, a5, a6, a7, a8, a9, a10) values ('$a1', '$tarihsaat', '$a2', '$a3', '$a4', '$a5', '$a6', '$a7', '$a8', '$a9', '$a10')");
if ($ekle){
echo "<font color='green'>İşlem başarı ile gerçekleştirildi</font>";
} else
echo "<font color='red'>İşlemde hata meydana geldi</font>";
}?>

<form action="" method="post">
<input type="text" name="1">
<input type="text" name="2">
<input type="text" name="3">
<input type="text" name="4">
<input type="text" name="5">
<input type="text" name="6">
<input type="text" name="7">
<input type="text" name="8">
<input type="text" name="9">
<input type="text" name="10">
<input type="submit">
</form>
mobilim yukarıdaki gibi çalışmazsa haber verin tekrardan bakayım hocam.