PHP Classes

File: output.XMethod.php

Recommend this page to a friend!
  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: 22 years ago
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>