mirror of
https://github.com/php/web-php.git
synced 2026-04-27 17:03:25 +02:00
559e0fa53b
- move some articles to the older news
- renamed "old_news.php3" to "oldinfo.php3" to avoid confusion
("oldnews" was older stuff on the In The News page, "old_news"
was older stuff from the main page.)
128 lines
5.2 KiB
PHP
128 lines
5.2 KiB
PHP
<?
|
|
require("shared.inc");
|
|
commonHeader("PHP in the News");
|
|
|
|
function makeEntry($title,$subtitle,$url=false,$date="") {
|
|
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><?
|
|
echo "<FONT FACE=\"$FONTFACE\">\n";
|
|
echo "<B>$title</B><BR></FONT>\n";
|
|
?></TD>
|
|
<TD ALIGN=right width=200><?
|
|
echo "<FONT FACE=\"$FONTFACE\" SIZE=-1>\n";
|
|
echo "<I>$date</I> <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=left COLSPAN=2><?
|
|
echo "<FONT FACE=\"$FONTFACE\" SIZE=-1>\n";
|
|
echo "$subtitle<BR>\n";
|
|
if ($url) {
|
|
echo "<A HREF=\"".$url."\" TARGET=\"_blank\">".$url."</A><BR></FONT>\n";
|
|
} else {
|
|
echo "<I>This article is not available online</I><BR></FONT>\n";
|
|
}
|
|
?></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 colspan=2>
|
|
<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>
|
|
<?
|
|
};
|
|
|
|
|
|
?>
|
|
<h3>PHP in the News</h3>
|
|
|
|
<P>
|
|
|
|
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
|
<? makeEntry( "PHP3 - a Revolution for the Web", "Article in German Internet World by Tobias Ratschiller", false, "Feb. 15, 1999");?>
|
|
"Static HTML pages are boring, CGI-scripts too slow, ColdFusion etc to
|
|
expensive? The solution is PHP3." This German introductory article presents
|
|
PHP3 as a scalable, easy-to-use, high-perfomance solution for server-side
|
|
scripting. Features also an interview with Rasmus Lerdorf.
|
|
<? endEntry(); ?>
|
|
|
|
|
|
|
|
<? makeEntry("Article on devshed.com","by Colin Viebrock","http://beta.devshed.com/Server_Side/PHP/search","Feb. 10, 1999");?>
|
|
"Search This: Searching Your Dynamic Site with PHP3 and ht://Dig"
|
|
<? endEntry(); ?>
|
|
|
|
<? makeEntry("Articles on phpbuilder.com","by Tim Perdue and Rasmus Lerdorf", "http://www.phpbuilder.com","Jan. 24, 1999");?>
|
|
"Building Dynamic Web Pages with Search Engines in Mind" and "Creating Dynamic Images with PHP"
|
|
<? endEntry(); ?>
|
|
|
|
<? makeEntry( "Classified ads with PHP3 and MySQL", "German article in Internet Pro (Ziff Davis) written by Tobias Ratschiller", "http://www.zdnet.de/internet/artikel/java/199902/php3mysql_00-wf.html", "Jan. 18, 1999"); ?>
|
|
"PHP3 is the most powerful tool on the market for building dynamic,
|
|
database-driven websites. Internet Pro shows how to realize a classified ads
|
|
site with PHP and MySQL."
|
|
<? endEntry(); ?>
|
|
|
|
<? makeEntry("Apache Gets Down to Business","WEBBuilder Magazine article by Bjørn Borud","http://www.devx.com/upload/free/features/webbuilder/1998/wb1098/bb1098/bb1098.htm","Sept. 24, 1998"); ?>
|
|
"The world's most popular Web server has a reputation for performance and extensibility.
|
|
You may not be aware of the rich programming environment that surrounds Apache,
|
|
though. PHP gives you strong SQL connectivity, and mod_perl has powerful application
|
|
integration facilities. Learn how to exploit these capabilities. Also, see our review of Apache."
|
|
<? endEntry(); ?>
|
|
|
|
<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=right colspan=2><FONT FACE="tahoma, verdana, arial, helvetica, sans-serif">
|
|
<B>Older News</B><BR></FONT>
|
|
</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 COLSPAN=2><FONT FACE="tahoma, verdana, arial, helvetica, sans-serif" SIZE=-1>
|
|
<A HREF="/oldnews.php3">Link to older articles</A><BR></FONT>
|
|
</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 colspan=2>
|
|
<TABLE border=0 cellpadding=5 cellspacing=0 bgcolor="#F0F0F0" width=100%>
|
|
<TR><TD><FONT FACE="tahoma, verdana, arial, helvetica, sans-serif" SIZE=-1>
|
|
<? spc(10,10);?>
|
|
<BR></TD></TR></TABLE>
|
|
</TD>
|
|
<TD width=18><BR></TD>
|
|
</TR>
|
|
|
|
|
|
<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 VALIGN=middle ALIGN=left colspan=2 rowspan=2>
|
|
If you have written an article, or spot something on the Net somewhere that isn't listed here, please send a note
|
|
to <a href="mailto:core@php.net">core@php.net</a> and we will be sure to add it to this list.<BR></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>
|
|
|
|
</TABLE>
|
|
|
|
<? commonFooter(); ?>
|