Search results

  1. P

    How to submit the data without submit button after using <input type="IMAGE">, the

    problem does not solve .? Plesase explain the answer with example with creating complete form and php code. Thank's Pragam
  2. P

    I've Implemented a simple login page in php.I just want to impose sessions...

    You should use session_start() in the login page. <? session_start(); if ($_REQUEST['Submit']){ $error_msg = array(); if ($_REQUEST['txt_login']==""){ $error_msg[]="Please Enter Username."; } else { if (check_email_address($_REQUEST['txt_login'])==false){ $error_msg[]="Please enter a valid...
  3. P

    I've Implemented a simple login page in php.I just want to impose sessions...

    You should use session_start() in the login page. <? session_start(); if ($_REQUEST['Submit']){ $error_msg = array(); if ($_REQUEST['txt_login']==""){ $error_msg[]="Please Enter Username."; } else { if (check_email_address($_REQUEST['txt_login'])==false){ $error_msg[]="Please enter a valid...
Back
Top