]
Quote:
Originally posted by FireFly
PHP Code:
<?php
error_reporting(7);
chdir('/home/user/htdocs/forums');
require('./global.php');
if ($bbuserinfo['userid'] != 0) {
$username = $bbuserinfo['username'];
echo "Welcome back, <b>$username</b>.";
}
?>
Change the path in the chdir() function to the real one.
|
I have tried to use this code as block on a phpNuke...
Result:
Code:
Parse error: parse error, unexpected T_STRING in /home/wooolf/WWW/phpnuke/themes/OceanBlue/theme.php(358) : eval()'d code on line 2
where line 358 is :
PHP Code:
eval($content);}
in this code:
PHP Code:
// Now We Can Incluse Any PHP Scripts
if (substr($content,0,2) != "<?")
echo $content;
else { $content = str_replace ("<?", "", $content);
eval($content);}
echo "</td>\n"
//End Of Hack