php-db | 2001071
Date: 07/12/01
- Next message: Tom Peck: "Re: [PHP-DB] pulling my hair out"
- Previous message: Jimmy Brake: "[PHP-DB] ocifetchstatement in mysql = ?"
- Next in thread: Tom Peck: "Re: [PHP-DB] pulling my hair out"
- Maybe reply: Tom Peck: "Re: [PHP-DB] pulling my hair out"
- Maybe reply: Dobromir Velev: "Re: [PHP-DB] pulling my hair out"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I have one script that looks like this:
<?php
setcookie ("logged_in", "yes", time() - 3600);
setcookie ("logged_user_name", "brad", time() - 3600);
?>
<html>
<head>
</head>
<body>
SENT
</body>
</html>
and another that looks like this:
<?php
print "start <br>";
echo $HTTP_COOKIE_VARS["logged_in"];
print "<br>";
echo $logged_user_name;
print "<br>";
print "end";
?>
which I have also tried like this:
<?php
print "<br>";
echo $logged_in;
print "<br>";
echo $logged_user_name;
?>
It seems like this should be extremely simple, but when I run the first one,
and then the second one, the second one only writes the <br>'s to the
document. It also doesnt trigger my browser (tried in netscape and ie5) to
alert me that a cookie is being sent, I turned that option on just to test
this script.
Please Help!
Brad
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Tom Peck: "Re: [PHP-DB] pulling my hair out"
- Previous message: Jimmy Brake: "[PHP-DB] ocifetchstatement in mysql = ?"
- Next in thread: Tom Peck: "Re: [PHP-DB] pulling my hair out"
- Maybe reply: Tom Peck: "Re: [PHP-DB] pulling my hair out"
- Maybe reply: Dobromir Velev: "Re: [PHP-DB] pulling my hair out"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

