Example #1
0
<html>
<head><title>Php app</title></head>
<?php 
include 'logger/Lemn.php';
?>
<body>
	HELLO<br/>
	<?php 
$lemn = new Lemn();
$lemn->scrie('pizza');
?>
</body>
</html>
Example #2
0
<html>
<head><title>Php app</title></head>
<?php 
include 'logger/Lemn.php';
?>
<body>
	HELLO<br/>
	<?php 
$lemn = new Lemn();
$lemn->scrie('pizza2');
$results = print_r($_REQUEST, true);
$lemn->scrie('REZULTATE: ' . $results);
$results = print_r($_POST, true);
$lemn->scrie('REZULTATE POST: ' . $results);
?>
</body>
</html>
Example #3
0
<?php

require_once 'logger/Lemn.php';
$lm = new Lemn();
echo 'Lemnul este activ<br/>';
$lm->scrie('----------------------------------------');
$informatiiReq = print_r($_REQUEST, true);
$informatiiGet = print_r($_GET, true);
$informatiiPost = print_r($_POST, true);
$lm->scrie('Informatii REQ: ' . $informatiiReq);
$lm->scrie('Informatii GET: ' . $informatiiGet);
$lm->scrie('Informatii POST: ' . $informatiiPost);
$lm->scrie('HEADERS:');
foreach (getallheaders() as $name => $value) {
    echo "{$name}: {$value}\n";
    $lm->scrie($name . ': ' . $value);
}