Thank you people, I managed to write a script "It's much longer than the one posted here but I managed" then I decided to go in to writing a script in php and MySql, the only problem is to insert data in to my table, spent 3 days now to correct the php script I wrote but no luck so far.
<?php
$db=mysql_connect("adapazari.eu.mysql", "adapazari_eu", "xxxxxxxx");
mysql_select_db( "adapazari_eu", $db);
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_query("INSERT INTO Table_1
DueDate,
Notes,
Street,
Area,
City,
County,
PostCode,
Tel,
Mobile,
Email,
Price,
Balance,
Payments,
Refresh)
VALUES (
'$POST['DueDate']',
'$POST[Notes]',
'$POST[Street]','
$POST[Area]',
'$POST[City]',
'$POST[County]',
'$POST[PostCode]',
'$POST[Tel]',
'$POST[Mobile]',
'$POST[Email]',
'$POST[Price]',
'$POST[Balance]',
'$POST[Payments]',
'$POST[Refresh]'");
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
echo "1 record added"/COLOR];
mysql_close($con);
?>