1
0
mirror of https://github.com/php/web-php.git synced 2026-03-25 15:52:08 +01:00
Files
archived-web-php/apachecon/s_embed.php3
Rasmus Lerdorf 2424277ad8 Add main slides
1998-10-21 23:44:28 +00:00

16 lines
384 B
PHP
Executable File

<?php require "header.inc"; ?>
<H1>HTML-Embedded</H1>
<?example('<html><?echo $variable?></html>');?>
<h1>vs. Traditional Scripting</h1>
<?example('#!perl
use CGI;
$q = new CGI;
$q->AutoEscape(\'true\');
print $q->header(-type => \'text/html\');
$q->import_names();
print $q->start_html(-title => "Test");
print $Q::variable;
print $q->end_html();')
?>
<?php require "footer.inc"; ?>