PHP Form Html form error -
this question has answer here:
- php login form issue coding 4 answers
i've made login form , im receive few errors, here website ive put php code html form , css desighn
you can view code @ http://www.zuprp.co.uk/full.php (full)
if($_post['myusername']){$myusername=$_post['myusername'];}
if($_post['mypassword']){$mypassword=$_post['mypassword'];}
instead of
$myusername=$_post['myusername'];
$mypassword=$_post['mypassword'];
also can use:
if($_post['submit']){
if($_post['myusername']){$myusername=$_post['myusername'];}
if($_post['mypassword']){$mypassword=$_post['mypassword']; } }
Comments
Post a Comment