Login   Register  
PHP Classes
elePHPant
Icontem

File: output.XMethod.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Niels Scheffers  >  XMethod  >  output.XMethod.php  >  Download  
File: output.XMethod.php
Role: Unit test script
Content type: text/plain
Description: This script will dump the output for you
Class: XMethod
Converts GET -> POST and vice versa.
Author: By
Last change:
Date: 2002-08-07 09:53
Size: 250 bytes
 

Contents

Class file image Download
<html>
<head>
    <title></title>
</head>
<body>
<?php
    
echo "Method: ".$_SERVER['REQUEST_METHOD']."<br>";
    
$name "_".$_SERVER['REQUEST_METHOD'];
    foreach($
$name as $key=>$val) { 
          echo 
"$key => $val<br>"
    } 
?>
</body>
</html>