Blame view
sources/apps/impressionist/lib/generatePreview.php
251 Bytes
|
42e4f8d60
|
1 2 3 4 5 6 7 8 9 10 11 12 |
<?php
session_start();
// Use $HTTP_SESSION_VARS with PHP 4.0.6 or less
if (!isset($_SESSION['htmldata']))
{
$_SESSION['htmldata'] = $_POST["generateddata"];
}
else
{
$_SESSION['htmldata'] = $_POST["generateddata"];
}
echo $_SESSION['htmldata'];
|