View Single Post
Old 11-14-2006, 12:04 PM   #6 (permalink)
StupidScript
Senior Member
 
StupidScript's Avatar
 
Join Date: 09-22-06
Location: Los Angeles
Posts: 663
iTrader: 0 / 0%
Latest Blog:
None

StupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really niceStupidScript is just really nice
Hmmm. PHP 5.x ... well ... thinking aloud ... register_globals is being handled a little differently than with v.4.x, and it generally prefers a variable to have been initialized before use (general practice, but loosely enforced), so maybe try
Code:
$iA=0; //init temp var $iA=$_GET["i"]; if($iA=="logout") {
?

I realize that $i _seems_ to have been initialized by its inclusion in the $_GET array, however maybe this is where the snafu lives ... in the translation between the two ...
StupidScript is offline   Reply With Quote