Hello to all Web Developers!
I need a simple help here:
<table class="maxWidth" cellspacing="0">
<form action="update_conditions.php" method="post" >
<tr>
<td ><input type="radio" name="sex" value="citizenship" checked="checked" />
Accept all citizenships <br />
<div class="paddT5 borderT"></div>
<input type="radio" name="sex" value="citizenship" /> We do not accept citizenships from: <textarea name="ud_not_citizenship" class="textarea" rows="5" > <? echo "$description" ?> </textarea>
</td></tr>
<tr><td>
<input type="Submit" value="Update conditions"></td></tr></table></form>
I need something like this:
If it's checked "Accept all citizenships " Show = Accept all citizenships
If it's checked "We do not accept citizenships from:" Show= textarea(details)
How can i add radio to a MYSQL db and then show data to PHP page.
Thanks to all :S