Jump to content

referer


Ninjakreborn

Recommended Posts

Or simply run this:
[code]<table border="0" cellpadding="2" cellspacing="1" width="900" bgcolor="#333" align="center">
  <tr style="background-color: #e1e1e1;">
    <th width="35%">Variable</th>
    <th>Value</th>
  </tr>
<?php

foreach($_SERVER as $key => $value)
{
    echo '  <tr>
    <td style="background-color: #f1f1f1">$_SERVER[\''. $key . '\']</td>
    <td style="background-color: #ffffff">' . $value . "</td>
  </tr>\n";
}

?>
</table>[/code]
to see what each server variable is set to.
Link to comment
https://forums.phpfreaks.com/topic/15480-referer/#findComment-62920
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.