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

27 lines
454 B
PHP
Executable File

<?php require "header.inc"?>
<h6>Syntax and switching modes</h6>
<?example('<?php
if(strstr($HTTP_USER_AGENT,"MSIE")):
?>
<b>You are using Internet Explorer</b>
<?php
else:
?>
<b>You are not using Internet Explorer</b>
<?php
endif;
?>');?>
<h6>Output:</h6>
<h6><?php
if(strstr($HTTP_USER_AGENT,"MSIE")):
?>
<b>You are using Internet Explorer</b>
<?php
else:
?>
<b>You are not using Internet Explorer</b>
<?php
endif;
?></h6>
<?php require "footer.inc"?>