Open call for Board Member and Moderator positions in Coin Return. More information here.
Sign up to win MNC Dover's voice! Details here.
You can now pre-register your username on Coin Return. Check out the instructions here.

PHP Code Tag is Impossible to Read

ASimPersonASimPerson Cold...... and hard.Registered User regular
edited April 2010 in H.Q. Reception Desk
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:
bowen wrote: »
[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

Posts

  • YamiNoSenshiYamiNoSenshi A point called Z In the complex planeRegistered User regular
    edited April 2010
    That does look pretty bad in Firefox 3.6.2.

    YamiNoSenshi on
  • BowenBowen Sup? Registered User regular
    edited April 2010
    Yeah a white or really light gray would be good there.

    Bowen on
Sign In or Register to comment.