You can now pre-register your username on Coin Return. Check out the instructions
here.PHP Code Tag is Impossible to Read
The php tag's background is impossible to read. I was wondering if someone could fix the style code for that? Here's an example:
[php]
<?php
$path = $_REQUEST["dir"];
$dirHandle = opendir($path) or die("Unable to open {$path}");
echo "{$path}'s contents:<br/><br/>";
while (false !== ($dirObj= readdir($dirHandle))) {
//check if it's a directory
if($dirObj != "." && $dirObj != "..") {
if(!is_file($dirObj)) {
echo "<a href=\"{$_SERVER["SCRIPT_NAME"]}?dir={$dirObj}\">{$dirObj}</a><br/>";
} else {
echo "<a href=\"{$dirObj}\">{$dirObj}</a><br/>";
}
}
}
closedir($dirHandle);
?>
[/php]
ASimPerson on
0
Posts