mirror of
https://github.com/php/presentations.git
synced 2026-03-24 23:52:18 +01:00
35 lines
999 B
XML
35 lines
999 B
XML
<slide title="PHP Guestbook">
|
|
<image filename="animated_elephant.gif" align="right" marginright="1.0em"/>
|
|
<blurb>
|
|
A Simple Guestbook written in PHP, to show you how powerful the language is
|
|
at creating web applications.
|
|
</blurb>
|
|
|
|
<list title="Guestbook Features" fontsize="2.5em">
|
|
<bullet>Stores data in a MySQL database</bullet>
|
|
<bullet>Escapes all data (<i>Security</i>)</bullet>
|
|
<bullet>Logs remote addresses (<i>Security</i>)</bullet>
|
|
<bullet>Implements Persistent Database connections</bullet>
|
|
</list>
|
|
|
|
<list title="Important Notes" fontsize="2.5em">
|
|
<bullet>The entire application (including html) is 96 lines long</bullet>
|
|
<bullet>I wrote it in 20 minutes (including database creation, apache setup)</bullet>
|
|
<bullet>I'm not a graphic designer :)</bullet>
|
|
</list>
|
|
|
|
<example
|
|
title="Guestbook SQL Source"
|
|
fontsize="1.2em"
|
|
type="sql"
|
|
filename="guestbook.sql"/>
|
|
|
|
|
|
<example
|
|
title="Guestbook PHP Source"
|
|
fontsize="1em"
|
|
type="php"
|
|
filename="guestbook.php"/>
|
|
|
|
</slide>
|