I am saying something similar to executing a PHP file which has PHP and HTML content in it...but this is not a file but it is a set of code which has to be executed....
a simple example would be...
Code: Select all
<!-- Day Range -->
<select name="day">
<?php for ($i = 1; $i <= 31; $i++){?>
<option value="<?php echo $i; ?>"><?php echo $i; ?></option>
<?php } ?>
</select>