Hey all.
Is it possible to populate a var with an output string generated by a
function? So:
*******************************
function write_string(count) {
for ($x = 0; $x < $count; $x++) {
echo "<option value=$x> Row $x</option>";
}
}
$my_string = write_string(5);
echo $my_string;
*******************************
I need $count option elements stored in $my_string. How to make this happen.
Thanks for any ideas,
--Noah
--
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php