आप जोड़ रहे हैं '
$countryId
. पर मूल्य। चूंकि एक पूर्णांक अपेक्षित है, इसलिए आपको उनका उपयोग करने की आवश्यकता नहीं है। इसे आजमाएं:
$countryId = isset($_POST['country']) ? (int)$_POST['country'] : 0;
$inserSQL = "INSERT INTO Table1(country_id) VALUES($countryId)";
$Result1 = mysql_query($inserSQL ) or die(mysql_error());