1
0
mirror of https://github.com/php/web-php.git synced 2026-03-29 01:32:15 +01:00
Files
archived-web-php/sites.php3
Rasmus Lerdorf 1cb421edf5 Ok, the bulk of the site has been changed over. Still a bit of clean-up
work to do.  And some of the links don't go anywhere.
1998-03-23 19:50:45 +00:00

163 lines
4.6 KiB
PHP

<?
require("shared.inc");
commonHeader("High-Profile sites running PHP");
function site($name,$domain) {
echo "<a href=\"http://$domain\">$name</a><br>\n";
}
function title($text) {
echo "<td bgcolor=#032F5B><center><font size=+1 color=#ffffff><b>$text</b></font></center></td>\n";
}
echo "<p><center><table border=1 cellpadding=15><tr>\n";
title("Sports Teams");
title("Auto");
title("Hi-Tech");
echo "</tr><tr><td valign=top>\n";
/* Sports Teams */
echo "<br></td><td valign=top>\n";
/* Auto Industry */
site("Mitsubishi Motors","www.mitsucars.com");
echo "<br></td><td valign=top>\n";
/* Hi-Tech Industry */
site("Fujitsu Business Communications Systems","www.fbcs.fujitsu.com");
site("32bit.com","www.32bit.com");
site("Developer Shed","www.devshed.com");
echo "<br></td>\n";
echo "</tr><tr>\n";
title("Telecommunications");
title("Travel & Tourism");
title("Religious");
echo "</tr><tr><td valign=top>\n";
/* Telecommunications */
site("Sprint Canada","www.sprint.ca");
site("Danish Yellow Pages","www.gulesider.dk");
site("Southwestern Bell","WWW.SBWireless.COM");
echo "<br></td><td valign=top>\n";
/* Travel */
site("Ambassadair - ATA's Travel Club","www.ambassadair.com");
site("BackPackers.Com","www.backpackers.com");
site("Texas Highways","WWW.TexasHighways.COM");
site("Texas Weekender","WWW.TexasWeekender.COM");
site("Whistler Networks","www.whistler.net");
site("Whistler Blackcomb Mountains","www.whistler-blackcomb.com");
echo "<br></td><td valign=top>\n";
/* Religious */
site("Kenneth Copeland Ministries","kcm.org");
site("Christian Financial Concepts","cfcministry.org");
echo "</tr><tr>\n";
title("Newspapers & Magazines");
title("Large ISP's");
title("Computer Software");
echo "</tr><tr><td valign=top>\n";
/* Newspapers & Magazines */
site("Børsen - Danish Business Daily","www.borsen.dk");
site("Computer Currents","www.computercurrents.com");
site("UPI Archives","upi.siteways.com");
site("CADALYST Magazine","www.cadonline.com");
echo "<br></td><td valign=top>\n";
/* Large ISP's */
site("Netvision","www.netvision.net.il");
site("Italia Online","www.iol.it");
site("XOOM Inc.","xoom.com");
site("Nederland.Net","www.nederland.net");
site("Pair Networks","www.pair.net");
echo "<br></td><td valign=top>\n";
/* Computer Software */
site("Knowledge Adventure","www.adventure.com");
site("C2Net Software Inc.","www.c2.net");
site("RedHat Software","www.redhat.com");
echo "</tr><tr>\n";
title("Military");
title("Government");
title("Educational");
echo "</tr><tr><td valign=top>\n";
/* Military */
site("US Army Publishing Agency","www-usappc.hoffman.army.mil");
echo "<br></td><td valign=top>\n";
/* Government */
site("National Institute of Ecology in Mexico","http://www.ine.gob.mx");
echo "<br></td><td valign=top>\n";
/* Educational */
site("The Biology Place","www.biology.com");
site("The Chemistry Place","www.chemplace.com");
site("The Psychology Place","www.psychplace.com");
site("NativeWeb","www.nativeweb.org");
site("The Internet Pilot to Physics","http://www.tp.umu.se/TIPTOP/");
echo "</tr><tr>\n";
title("Service Industry");
title("Not-for-Profit");
title("Miscellaneous");
echo "</tr><tr><td valign=top>\n";
/* Service Industry */
site("Restoration Hardware","www.restorationhardware.com");
echo "<br></td><td valign=top>\n";
/* Not-for-Profit */
site("National Marrow Donor Program","www.marrow.org");
echo "<br></td><td valign=top>\n";
/* Misc. */
site("Internet Weather Report","www.internetweather.com");
site("Metaindex of Law and Government","www.catalaw.com");
site("TVGrid.com","www.divein.tvgrid.com");
site("ClearInk Corporation","www.clearink.com");
site("Cigar.Com","www.cigar.com");
echo "</tr><tr>\n";
title("Financial Industry");
title("Games");
title("&nbsp;");
echo "</tr><tr><td valign=top>\n";
/* Financial Industry */
site("E*Trade","www.etrade.com");
site("First USA Bank","www.firstusabank.com");
site("TFC Commodity Charts","tfc-charts2.w2d.com");
/* Games */
echo "<br></td><td valign=top>\n";
site("Worms2","www.worms2.com");
echo "<br></td><td valign=top>\n";
echo "</td></tr></table></center>\n";
?>
<blockquote><blockquote>
<font size=+1><i><tt>If you have a site you feel belongs on this list, please
send us email at <a href="mailto:sites@php.net">sites@php.net</a>. With well
over 60,000 sites on the Internet running PHP, we cannot list them all. This
list is to help developers justify their decision to use PHP. It should thus
contain high-profile sites that someone not necessarily well-versed in the ways
of the Internet might have heard of.
</tt></i></font>
</blockquote></blockquote>
<?
commonFooter();
?>