Hello... I'm having a hard time passing values from one php scripts to the other because it doesn't seem to work. Here's part of the script


session_start();
require_once("./functions.php");
$usrname = $_POST['usrname'];
$passwrd= $_POST['passwrd'];
session_register('usrname');
session_register('passwrd');
$_SESSION['usrname']=$usrname;
$_SESSION['passwrd'] = $passwrd;


I don't know what's wrong with it. Maybe I missed something here. Btw, this doesn't happened on Mozilla.


Thanks in advance.
--
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to