Duplicar posible:
PHP: “Notice: Undefined variable” and “Notice: Undefined index”Undefined index en PHP
Buenos días!
estoy teniendo el siguiente error en mi código:
<?php
if (!$_POST['SUBMIT']){ //ERROR: Undefined index
?>
<H2>Add Employee</H2>
<form action="<?php print $_SERVER['PHP_SELF']; ?>" method="POST">
<table width="400" border="0" cellspacing="1" cellpadding="2">
<tr>
<td width="100">SSN</td>
<td><input name="SSN" type="text" id="SSN"></td>
</tr>
<tr>
<td width="100"> </td>
<td><input name="SUBMIT" type="SUBMIT" id="ADD" value="ADD"></td>
</tr>
</table>
</form>
<?php
}
else {
//code here
}
?>
¿Cómo puedo eliminar el error anterior? Gracias.
intente hacer un 'print_r ($ _ POST)' o 'var_dump ($ _ POST)' y vea primero lo que hay en el conjunto – kjy112
Intente usar 'isset()' y '! Empty' en lugar de'! $ _ POST'. – Robik
@ kjy112 Array() – newbie