Yeah im not sure this is the right forum for this question but,

I need to get the POST parameters of a request, like the FireFox tamper data add-on (which isn't working for me right now) so im looking for an alternative.

Whats an alternative way i can view data being sent?

Recommended Answers

All 2 Replies

In PHP:

<table><thead>
<th>Name:</th><th>Value:</th></thead>
<tbody>
<?php foreach($_POST as $name=>$value)
{
echo ("<tr><td>$name</td><td>$value</td></tr>"); 
}?>
</tbody></table>

Or use firefox to view them as you said before.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.