Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
using_php [2021/02/19 14:51] – created ac1mdeusing_php [2021/02/19 14:54] (current) ac1mde
Line 19: Line 19:
 Global session variables are not automatically passed from the session file, and you need to extract them manually: Global session variables are not automatically passed from the session file, and you need to extract them manually:
 ^ Before ^ After ^ ^ Before ^ After ^
-| session_register("userName"); +| session_register("userName"); print $userName=]; $userName = "pat"; | session_start(); session_register("userName"); if (isset ($_SESSION['userName'])) {$userName = $_SESSION['userName'];} print $userName; $userName = "pat"; $_SESSION['userName'] = $userName; |
-print $userName=]; +
-$userName = "pat"; | session_start(); +
-session_register("userName"); +
-if (isset ($_SESSION['userName'])) { +
-$userName = $_SESSION['userName']; +
-} +
-print $userName; +
-$userName = "pat"; +
-$_SESSION['userName'] = $userName; |+
  
 Similarly, form variables are not automatically passed into the PHP variables, so you must do this manually. Similarly, form variables are not automatically passed into the PHP variables, so you must do this manually.
 ^ Before ^ After ^ ^ Before ^ After ^
-| print "you typed: ".$text; +| print "you typed: ".$text; print "was check box 2 selected? ".$cb[2]; if (isset($_POST['cb'])) {$cb = $_POST['cb']; } if (isset($_GET['text'])) {$text = $_GET['text']; } print "you typed: ".$text; print "was check box 2 selected?".$cb[2]; |
-print "was check box 2 selected? ".$cb[2]; if (isset($_POST['cb'])) { +
-$cb = $_POST['cb']; +
-} +
- if (isset($_GET['text'])) { +
-$text = $_GET['text']; +
-} +
-print "you typed: ".$text; +
-print "was check box 2 selected? +
-".$cb[2]; |+
using_php.1613746316.txt.gz · Last modified: 2021/02/19 14:51 by ac1mde
Public Domain
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0