Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<html>

<head>
<form>
name<input type="text">
email<input type="text">
reg no<input type="text">
password<input type="password">
re-enter password<input type=" ">
mobile no<input type="text">
course<input type="radio"value="BCA"name="c">BCA
<input type="radio"value="BCOM"name="c">BCOM
<input type="radio"value="BBA"name="c">BBA
gender <input type="radio"name="Girl","Female">
<input type="radio"name="Boy","Male">
state<selected>
<option>karnataka</option>
<option>Andhra pradesh</option>
<option>Tamil nadu</option>
</select>
country<select>
<option>India</option>
<option>srilanka</option>
<option>china</option>
</select>
address<textarea rows="5"cols="10"></textarea>
DOB<input type="date">
language<input type="checkbox"value="k"
languagel">kannada
<input type="checkbox"value="E"
name="l">English
<input type="checkbox"value="k"
name="l">Kannada
<input type="checkbox"value="H"
name="l">Hindi
oploadpic<input type='fail">
<input type ='checkbox">term&condtions
<input type="submit"name="s">
<input type="reset">
</form>

<?php
if(isset($_post['s'])
{
$n=$_post['name'];
echo "name=$n<br>";
$n=$_post['email'];
echo"email=$n<br>";
$n=$_post['regno'];
echo"regno=$n<br>";
}
?>
</body>
</html>

You might also like