hello people of sound mind with logic thinking am kind of stuck with a notice error called undefine index, what do u think could b d cause. thanks
here is d code d error lies within d line 1 to 8
<?php
$continent = $country = $num_city = "";
if ($POST['submit'] == "submit")
{
$continent = $POST['frmContinent'];
$country = $POST['frmCountry'];
$num_city = $POST['frmCity'];
include_once("database.php");
$myconnect = mysql_connect($hostname, $username , $pword);
mysql_select_db($dbase, $myconnect)or die(mysql_error());
}