| Enter a string to post : |
|
Environments Variables
The php file significative content is layoutted herein aside [...right cell]
By typing anything in the input box above a post variable is sent for testing, any result will be displayed in bold green color herein above, after having processed this form by clicking on the Send button above to test the servers'performances. testing.php?f=GET [$f=$HTTP_GET_VARS['f'];] ... reset | <?# testing.php echo"<table cellspacing=0 cellpadding=0><tr><td> <form method='post'action='$PHP_SELF'> </td><td>Enter file name :<br> <input type='text'name='file'value='$file'size='77'> <div align=right> <input type='submit'value='Send'name='submit'> </div></td><td></form></td></tr></table>"; $file=$HTTP_POST_VARS['file']; echo"$file";//$file="file.php"; $f=$HTTP_GET_VARS['f']; echo" $f "; # <a href=testing.php?f=GET>testing.php?f=GET</a> ?> |