hi - I've been happily building select arrays from mysql and then dropping them into my html with this code:
<select name="foo" id="foo">
<OPTION VALUE=0>Choose...
<?="$dd_foobar"?>
</select>
and now I'm a bit more experienced I'm wondering what the hell is this bit:
<?="$dd_foobar"?>
shouldn't it be:
<?php echo $dd_foobar?>
and why does the first version seem to work ok?
-I cant do a search on phpbuilder or Google for "<?="