Search results

  1. I

    session is not woking after a header function plz help me

    thankz roelpaulo i solved this problem by dual reirect ie >> after login i redirect to a page >> from that page i redirect to main page now working correctly thanks for Ur valuable suggestion further suggestion are welcomed
  2. I

    session is not woking after a header function plz help me

    i tried your suggestion but its not working now i think it is not the problem of header but the session variable is not setting since i had executed a session testing script it works correctly test file 1 <?php session_start(); $_SESSION['test'] = 'testing'; ?> test file 2 <?php...
  3. I

    session is not woking after a header function plz help me

    my php code for login <?php $db_host = 'localhost'; // don't forget to change $db_user = 'cepit08_root'; $db_pwd = 'root1'; $database = 'cepit08_cepit'; if (!mysql_connect($db_host, $db_user, $db_pwd)) die("Can't connect to database"); if (!mysql_select_db($database)) die("Can't select...
Top