PHP Classes

File: content.inc

Recommend this page to a friend!
  Classes of Vladimir Kudryavtsev   History links   content.inc   Download  
File: content.inc
Role: Auxiliary script
Content type: text/plain
Description: Test (for all pages)
Class: History links
Keep track and link to pages browsed by user
Author: By
Last change:
Date: 18 years ago
Size: 164 bytes
 

Contents

Class file image Download
<?php
if(isset($_GET['content'])){
   
reset($_GET);
    while(list(
$i,)=each($_GET)){
        echo
'<b>'.$i.'</b> = '.$_GET[$i].'<br>';
    }
}
else{
    echo
'no content';
}
?>