The following code give undefined index in XAMPP but not on other APACHE Server is this error only limited to xampp
<?php
if($_POST['names']!=""&&$_POST['n']!="")
{
print_r($_POST);
}
?>
<form action="undefiend_error.php" method="post" >
<input type="text" name="names" value="">
<input type="text" name="n" value="">
<input type="hidden" name="nd" value="">
<input type="submit" value="submit" >
</form>