Help with fighting style
#1

I know this isn't a php help forums but i thought i would ask here since it has to do with a samp server, Ok I've got it for when you register on the site you can select your age fighting style and religion, but i'm having problems with fighting style and religon, I've got them select in a select menu and i want it so i can choose fighting styles nshit, Once i figure out the fighting style i can prolly figure out the religion one. Here is the code for the Age choose, How could i convert this so i can make it where you can select fighting styles

PHP код:
        <td><b>Age:</b></td>
        <
td><select name="age">
                <
option value="---">Select Age</option>
                
';
            for ($i=18;$i<99;$i++)
            {
                $year = date('
Y') - $i;
                echo '
<option value="'. $i .'">'. $i .' (' .$year. ')</option>
                
';
            }
            echo '
            
</select
The Values used for my fighting styles are 26,15,6 and 5. Thats what i have it set in my scirpt cause before you choosed all this info in a dialog box but now i want to be able to select it on my website


Edit nevermind i have figure it out
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)