<?php
/*
 * Kompendium der Web-Programmierung
 * Webapplikationen mit PHP
 * 
 * alternative Syntax
 */

$boole = 0;

?>

<HTML>
	<HEAD>
		<TITLE>WebKompendium: Listen in PHP mit PHP</TITLE>
		<link rel="stylesheet" type="text/css" href="/webkompendium/css/webkompendium.css">
		<link rel="shortcut icon" href="/webkompendium/images/springer_icon.ico">
	</HEAD>
	<BODY>
		<HR><CENTER><H2>
			Kompendium der Web-Programmierung<BR>alternative Syntax in PHP
		</H2><HR><H3>
		
		<?php
			if ($boole)
		?>
		
		wahr (normale Syntax)<BR>
		
		<?php
			;
			if ($boole) :
		?>
		
		wahr (alternative Syntax)<BR>
		
		<?php
			endif
		?>
		
		</H3></CENTER><HR>
	</BODY>
</HTML>