Lect 21 Passing Variables Between Pages
Lect 21 Passing Variables Between Pages
[email protected]
submit
name email
$_GET
Asad [email protected]
Mubashir Ali - Lecturer (Department of
10
Computer Science).
1.1 Super Global Variables…
<body> Asad
<form method=“post”>
<input type=“text” name=“name”> [email protected]
<input type=“text” name=“email”> submit
<input type=“submit”>
</form>
</body>
$_POST
Asad [email protected]
name email
Ation.php
Asad
<?php
[email protected] $name = $_GET[‘name’];
submit $email = $_GET[‘email’];
?>
Ation.php
Asad
<?php
[email protected] $name = $_POST[‘name’];
submit $email = $_POST[‘email’];
?>
Post Method
Data is received
Display a message
We are on
action page
Getting
value of ‘C’
Getting value
of ‘VB’
Getting value of
radio
Session variable is
created
link
Session
variable’s value
Session is
accessed