![]() |
|
|
+ Search |
![]()
|
Jul 13th, 2006 10:14
Chris Thompson, vijesh Nair,
<code>
// this page received a GET
if($_GET){
echo 'GET happened';
}
// this page received a POST
if($_POST){
echo 'POST happened';
}
</code>