anoopd wrote:What is the problem in this line of code
its showing error
Notice: Undefined variable: EMAIL in ..\emailcheck.php on line 9
<input type=text name=EMAIL size="20" value=<?echo $EMAIL ?> >
Well u didnt define $EMAIL variable, so your variable is not knowen in your code ...
Try like this ....
<input type="text" name="EMAIL" size="20" value="<?php if (isset($EMAIL)) echo $EMAIL;?>" />