I looked on some ebooks and I am not fully aware of what the problem is.
www.cfe-clan.com/testing-trial/clans.php?id=register the if's are under the number of clan founders and should run off of the radio butons.
Here is the code I have
Code:
echo '
<td align="center">Number of Clan Founders
<input type="radio" name="founders" value="1">1
<input type="radio" name="founders" value="2">2
<input type="radio" name="founders" value="3">3
<input type="radio" name="founders" value="4">4
<input type="radio" name="founders" value="5">5
<input type="radio" name="founders" value="more"> More than 5
</td>
</tr>
<tr>
<td>';
if (founders == '1')
echo '<input type="text" name="founders2" size="20"><br />
';
elseif (founders == '2')
echo '<input type="text" name="founders2" size="20"><br />
<input type="text" name="founders2" size="20"><br />
';
elseif (founders == '3')
echo '<input type="text" name="founders2" size="20"><br />
<input type="text" name="founders2" size="20"><br />
<input type="text" name="founders2" size="20"><br />
';
elseif (founders == '4')
echo '<input type="text" name="founders2" size="20"><br />
<input type="text" name="founders2" size="20"><br />
<input type="text" name="founders2" size="20"><br />
<input type="text" name="founders2" size="20"><br />
';
elseif (founders == '5')
echo '<input type="text" name="founders2" size="20"><br />
<input type="text" name="founders2" size="20"><br />
<input type="text" name="founders2" size="20"><br />
<input type="text" name="founders2" size="20"><br />
<input type="text" name="founders2" size="20"><br />
';
elseif (founders == 'more')
echo '<textarea name=\'founders2\' rows=12 cols=25></textarea>
';