Sie fügen '
hinzu an die $countryId
Wert. Da eine Ganzzahl erwartet wird, müssen Sie sie nicht verwenden. Versuchen Sie Folgendes:
$countryId = isset($_POST['country']) ? (int)$_POST['country'] : 0;
$inserSQL = "INSERT INTO Table1(country_id) VALUES($countryId)";
$Result1 = mysql_query($inserSQL ) or die(mysql_error());