On Saturday 25 January 2003 20:38, CF High wrote: > Each operation has @ 50 lines of html -- do I have to echo or print all > this html!?
Try something like
<?php
switch ($foo) {
case 1:
?>
<h1>Hello</h1>
<?php
break;
}
?>
johannes
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

