i have made a status for the user...
my problem is, how to make a status that i have selected,for example single, will be appear as images on profile?can someone help me?
PHP Code:
$nen = mysql_fetch_array(mysql_query("SELECT status FROM ibwf_users WHERE id='".$uid."'"));
echo "Status: <br/><select name=\"mar\" value=\"$nen[0]\">";
echo "<option value=\"married\">married</option>";
echo "<option value=\"single\">single</option>";
echo "<option value=\"divorce\">divorce</option>";
echo "</select><br/>";
Comment