PHP 4
From Ilianko
(Redirected from PHP предаване на данни)
GET
<?php print_r($_GET) ?>
POST
<?
print_r($_POST)
?>
<form method=POST>
<input type=text name=user>
<input type=submit name=button value="natisni">
</form>
SERVER
<?php print_r($_SERVER) ?>
<?php if($_SERVER['REQUESTED_METHOD'] == 'POST') { echo 'OK'; } ?>
SESSION
<?php
session_start();
echo 'old: ';
print_r($_SESSION);
echo '<br /> new: ';
print_r($_POST);
?>
<form method=POST>
<input type=text name=user>
<input type=submit name=button value="natisni">
</form>
<?php
$_SESSION['user'] = $_POST;
?>
<?php
session_start();
print_r($_SESSION);
if( isset($_SESSION['element']){
$_SESSION['element']++;
}
else
$_SESSION['element'] = 1;
?>
COOKIE
<?php
echo 'old: ';
print_r($_COOKIE['user']);
echo '<br /> new: ';
print_r($_POST['user']);
?>
<form method=POST>
<input type=text name=user>
<input type=submit name=button value="natisni">
</form>
<?php
setcookie("user", $_POST['user']);
?>
print_r($_COOKIE); setcookie('broj', ++$_COOKIE['broj'], time() + (10 * 365 * 24 * 60 * 60));