PHP Classes

File: examples/pager/example_sub_page.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/pager/example_sub_page.php   Download  
File: examples/pager/example_sub_page.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 436 bytes
 

Contents

Class file image Download
<?php
$script
= preg_replace('/[^a-zA-Z0-9\_\.]/', '', $_GET['script']);
session_start();
echo
'<pre>' . print_r($_SESSION, 1) . '</pre>';
?>
<html>
<body>

<p><a href="<?php echo $script; ?>">Return without resume.</a></p>

<p><a href="<?php echo $script; ?>?page=resume">Return with resume.</a></p>

<p><a href="<?php echo $script; ?>?page=resume&last_row=recalc">Return with resume and recalc.</a></p>

</body>
</html>