PHP expert |
|
ik wil dat je in register.php en editprofile.php uit een drop down dingetje je land kan kiezen, dat heb ik nu wel met behulp van een script van wmcity.nl, maar hoe kan ik dan het land + vlag laten zien in memberlist.php..??
ik gebruik dit script voor de selectbox:
<td>Country</td><td width="200"><select size="1" name="suCountry">
<?
include('country.php');
foreach($country AS $shortCountry => $longCountry)
{
echo "<option value=\"".$shortCountry."\">".$longCountry."</option>\n";
}
?>
</select></td>
<td>Country</td><td width="200"><select size="1" name="suCountry"> <? include('country.php'); foreach($country AS $shortCountry => $longCountry) { echo "<option value=\"".$shortCountry."\">".$longCountry."</option>\n"; } ?> </select></td>
en in country.php staan het gewoon zo
afkorting => gehele naam
hier is de link naar script op wmcity.nl
http://wmcity.n...amp;id=788
en nu weet ik eigelijk niet precies hoe ik verder moet...
in de map images/flags staan alle vlaggetjes
hoop dat het duidelijk is
|