The Goods

Lynn's Site w/Photo gallery SemperToons Dependable Computer Solutions Outback Fireplaces View Rob Robinson's profile on LinkedIn

Client Info IP: 38.107.191.111
Browser: CCBot/1.0 (+http://www.commoncrawl.org/bot.html)

bottom corner

Geek Stuff This is the code that runs the links page on this site

 1: <?php
 2: $link_list 
= array("Slashdot" => "http://slashdot.org",
 3:     
"MySQL Manual" => "http://www.mysql.com/doc/en/index.html",
 4:     
"Perl Doc" => "http://www.perl.com/pub/q/documentation",
 5:     
"Linux System Administrators's Guide" => "http://tldp.org/LDP/sag",
 6:     
"Unix, Linux Jobs" => "http://mojolin.com",
 7:     
"linux.com" => "http://www.linux.com",
 8:     
"LWN.net" => "http://www.lwn.net",
 9:     
"Mountain Biking Gifford Pinchot" => "http://www.fs.fed.us/gpnf/recreation/mountainbikes/index.shtml",
10:     
"DigitalArt.org" => "http://digitalart.org",
11:     
"Codewalkers" => "http://codewalkers.com",
12:     
"Outback Fireplaces" => "http://outbackfireplaces.com"
13:
);
14: echo 
"<table><tr><td valign='top'>";
15: echo 
"<ul>";
16: foreach(
$link_list as $key => $value){
17:     echo 
"<li><a href=\"$value\" target=\"_blank\" class='menulinkn'>$key</a></li>\n";
18: }
19: echo 
"</ul>";
20: echo 
"</td></tr></table>";
21:
22:
?>
23:

bottom corner