mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<?
|
|
require_once 'prepend.inc';
|
|
commonHeader("Thanks");
|
|
|
|
function makeEntry($heading) {
|
|
global $FONTFACE;
|
|
?>
|
|
<TR bgcolor='#D0D0D0' valign=top>
|
|
<TD ALIGN=left WIDTH=18><IMG ALT=" " SRC="/gifs/gcap-lefttop.gif" WIDTH=18 HEIGHT=18 BORDER=0><BR></TD>
|
|
<TD ALIGN=left rowspan=2 valign=middle>
|
|
<?
|
|
echo "<FONT FACE=\"$FONTFACE\" SIZE=-1><FONT SIZE=+0>\n";
|
|
echo "<B>$heading</B><BR></FONT>\n";
|
|
?>
|
|
</TD>
|
|
<TD ALIGN=right WIDTH=18><IMG ALT=" " SRC="/gifs/gcap-righttop.gif" WIDTH=18 HEIGHT=18 BORDER=0><BR></TD>
|
|
</TR>
|
|
<TR VALIGN=bottom bgcolor='#D0D0D0'>
|
|
<TD ALIGN=left><IMG alt=" " SRC="/gifs/gcap-leftbot.gif" WIDTH=18 HEIGHT=18 BORDER=0><BR></TD>
|
|
<TD ALIGN=right><IMG alt=" " SRC="/gifs/gcap-rightbot.gif" WIDTH=18 HEIGHT=18 BORDER=0><BR></TD>
|
|
</TR>
|
|
<TR VALIGN=top>
|
|
<TD WIDTH=18><BR></TD>
|
|
<TD ALIGN=left>
|
|
<TABLE border=0 cellpadding=5 cellspacing=0 bgcolor="#F0F0F0" width=100%>
|
|
<TR><TD><FONT FACE="<? echo $FONTFACE;?>" SIZE=-1>
|
|
<?
|
|
};
|
|
|
|
function endEntry() {
|
|
?>
|
|
<BR><BR></TD></TR></TABLE>
|
|
</TD>
|
|
<TD width=18><BR></TD>
|
|
</TR>
|
|
<?
|
|
};
|
|
?>
|
|
|
|
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
|
<?makeEntry("Chek.com")?>
|
|
For providing the server and bandwidth that runs www.php.net.
|
|
<?endEntry()?>
|
|
|
|
<?makeEntry("easyDNS")?>
|
|
For providing DNS services for the php.* domains.
|
|
<?endEntry()?>
|
|
|
|
<?makeEntry("VA Linux Systems")?>
|
|
For providing the server and bandwidth that runs the PHP mailing lists, CVS server,
|
|
snapshot site and a number of other services.
|
|
<?endEntry()?>
|
|
|
|
<TR VALIGN=bottom bgcolor='#D0D0D0'>
|
|
<TD ALIGN=left><IMG alt=" " SRC="/gifs/gcap-leftbot.gif" WIDTH=18 HEIGHT=18 BORDER=0><BR></TD>
|
|
<TD ALIGN=right><IMG alt=" " SRC="/gifs/gcap-rightbot.gif" WIDTH=18 HEIGHT=18 BORDER=0><BR></TD>
|
|
|
|
</TABLE>
|
|
<? commonFooter(); ?>
|