To restrict login from another unknown IP
you must need to use $_server['REMOTE_ADDR']
the syntax to restrict is
if(isset($_POST['submit'])=="SUBMIT")
{
if($_server['REMOTE_ADDR']=='127.0.0.1') // replace with your own IP
{
// your code
}
}
you must need to use $_server['REMOTE_ADDR']
the syntax to restrict is
if(isset($_POST['submit'])=="SUBMIT")
{
if($_server['REMOTE_ADDR']=='127.0.0.1') // replace with your own IP
{
// your code
}
}

