Posted by William Stokes on 04/07/05 15:58
Hello,
Can I jump to html and back to php in the middle on switch
example:
<?php
switch ($old_type) {
case 'turn':
?>
<td>
do some html
</td>
<?php
break;
switch ($old_type) {
case 'not turn':
?>
<td>
do some html
etc etc.
Thanks
-Will
[Back to original message]
|