<?php
mysql_query("SELECT * FROM page where page_id = '$page_id'") or die(mysql_error());
while($land = mysql_fetch_array($resultxx)){
$land =$land['land'];
?>
output $land is NL,DE,BE,AL..
How is it possible to splits the output
example
<?php
echo "
<select>
<option value='NL'>NL</option>
<option value='DE'>DE</option>
<option value='BE'>BE</option>
<option value='AL'>AL</option>
</select>";
}
?>
$exp = explode(',', $land);and get withecho $exp[0];explode functionecho implode(' ',explode(',',$land['land']));.