php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #20736 sessions, its seams a bug
Submitted: 2002-11-30 08:30 UTC Modified: 2002-11-30 09:37 UTC
From: vm at color-pro dot com Assigned:
Status: Not a bug Package: Session related
PHP Version: 4.3.0RC2 OS: FreeBSD 4.5
Private report: No CVE-ID: None
 [2002-11-30 08:30 UTC] vm at color-pro dot com
<?
$rf = session_start(); //begin session

$one = $two;           //when $tho is empty --> $one is empty too
$rr = session_register(one); //then registered $one in session (one is empty)

$rr = "example";           // then for example $rr = "example";
echo $fff;                 // end here we print $fff (but $fff have been empty, we did not defined it ) 
echo $fsdf;
echo $empty;
//but this echo?s example... WHY ??? this is small BUG
?>

<?
echo $fff;                 
echo $fsdf;
echo $empty; //this echoe nothing becouse $empty $fsdf  $fff; is empty

// test this 2 //
?>

ps. './configure' '--with-mysql' '--with-config-file-path=/svc/httpd/conf' '--with-apxs2=/svc/httpd/bin/apxs' '--enable-ftp' 

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-11-30 09:37 UTC] sniper@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions. 

Thank you for your interest in PHP.
 [2002-11-30 10:47 UTC] vm at color-pro dot com
why not its... a bug plz test this one..
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Apr 28 22:01:29 2024 UTC