Changed experience input.

This commit is contained in:
William Brawner 2015-08-30 10:05:03 -07:00
parent 9df4cba4fc
commit 85e4078d15
4 changed files with 23 additions and 6 deletions

Binary file not shown.

View file

@ -42,9 +42,16 @@
<br /> <br />
<br /> <br />
<select> <select>
<option>0-6 months</option> <option>0 years</option>
<option>6 months - 2 years</option> <option>1 year</option>
<option>2 or more years</option> <option>2+ years</option>
</select>
<select>
<?php
for ($i = 0; $i <= 11; $i++) {
echo '<option>' . $i . ' months</option>'
}
?>
</select> </select>
<br /> <br />
<br /> <br />

View file

@ -42,13 +42,23 @@
<br /> <br />
<br /> <br />
<select> <select>
<option>0-6 months</option> <option>0 years</option>
<option>6 months - 2 years</option> <option>1 year</option>
<option>2 or more years</option> <option>2+ years</option>
</select>
<select>
<?php
for ($i = 0; $i <= 11; $i++) {
echo '<option>' . $i . ' months</option>'
}
?>
</select> </select>
<br /> <br />
<br /> <br />
<br />
<label>How many days would you like to workout this week?</label> <label>How many days would you like to workout this week?</label>
<br />
<br />
<select> <select>
<?php <?php
for ($i = 1; $i <= 6; $i++) { for ($i = 1; $i <= 6; $i++) {