/[webpac2]/trunk/web/iwf/testers/iwfajaxpost.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/web/iwf/testers/iwfajaxpost.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 46 - (show annotations)
Mon Nov 14 16:13:17 2005 UTC (18 years, 5 months ago) by dpavlin
File size: 410 byte(s)
 r8855@llin:  dpavlin | 2005-11-14 01:49:57 +0100
 added small browser using Interactive Website Framework
 from http://iwf.sourceforge.net

1 <?
2 require_once('../php/iwf.php');
3 $iwf->popup($iwfTarget);
4 $iwf->startHtml($iwfTarget);
5 $iwf->pretty(true);
6
7 echo "<h1>GET</h1>";
8
9 foreach($_GET as $key => $val){
10 echo "'$key' = '$val'<br />";
11 }
12
13 echo "<h1>POST</h1>";
14 foreach($_POST as $key => $val){
15 echo "'$key' = '$val'<br />";
16 }
17
18 echo "<h1>RAW POST</h1>";
19 echo $GLOBALS['HTTP_RAW_POST_DATA'] . "<br />";
20
21 $iwf->endHtml(true);
22
23
24 ?>

  ViewVC Help
Powered by ViewVC 1.1.26