hello,
I know something like this is possible :
<? $name =mushi ; ?>;
<B> my name is <? print($name);?> </B>
but is it also possible to do this with loops ?
like this :
<?PHP
$name[0] =mushi ;
$name[1] = boo ;
$name[2] = ba ;
$name[3] = bie ;
?>;
<? for($i=0,$i<count($name),$i++) { ?>
<B> my name <? print($i);?> is <? print($name[$i]);?> </B>
<? } ?>
I know that is this example its really stupid to try it this way, but I'm working on something that is a bit too big to put here :-) actually it's a big table, so I have to use a lot of print commands and escape the double quotes all the time. But it doesn't seem to work for me this way, anybody knows what I'm doing wrong ?