Is there a standard php library that one would normally use to generate
bits of html?
A typical task is to loop through some items and format them as the
options for a <select> in a form.
This sort of thing is so common I am assuming that at the code already
exists to do all this sort of html generating, and all I need to do is
"include" it and make a single function call in the right place.
something like
<?php include "html_tags. php" ?>
<form><select >
<?php echo show_options($m ylist,$choosen)
?></select></form>
I assume I just haven't looked in the right place yet, or if I did then I
didn't recognize the title for what it meant.
Thanks.
Comment