![]() |
Sergey Kornilov admin 11/3/2005 |
Hi, |
|
D
|
DouglasB 3/3/2006 |
You don't happen to have an example of how to do this do you? For example what am I changing and what am I keeping if I have "STATES" in a look up table? Hi, PHPRunner generates only text fields on Registartion page. However you can modify generated register.php file to customize Registration page. Change a HTML code displaying "Year graduated" input control to show select control instead of text field. Just keep the value of "name" attribute. |
|
![]() |
Sergey Kornilov admin 3/6/2006 |
Douglas, <input type=text name="userinfo<?php echo $ind;?>" value="<?php if(isset($userinfo[$ind])) echo htmlspecialchars($userinfo[$ind]);?>" >
<select name="userinfo<?php echo $ind;?>"> <option value="...">...</option> ... </select> |
|