header
s.no | Teacher_Name |
1 | Carmen |
Get methods Example:
";
echo "Your age ". $_GET['age'];
exit();
}
?>
output:
OUTPUT :
Welcome suhani
Your age 12
Post methods Example:
";
echo "Your weight ". $_POST['weight'];
exit();
}
?>
output:
Welcome Aashish kumar
Your weight 55