====== PHP Basics ====== ^ Code ^ Function ^ | $var=wert | add a variable | | if ($result != 0){} else {} | if | | while ($row = mysql_fetch_object($result)){} | while | | session_start (); | start a session | | $_SESSION["anything"] = $variable; | add a variable to anything in session | | echo ''; | how your "''" should be | | echo '
'.$var.'
'; | dot-connector | | $status = $_POST["status"]; | write post to variable | \\ \\ ~~DISCUSSION:closed~~