Jump to content

How do I debug a POST?


unemployment

Recommended Posts

I don't know how to debug this.  The if is being executed and I want to have the else be executed.  How can I find out what $_POST['id'] is?

 

if (isset($_POST['id']) === false)
{
echo 'Invalid user id.';
}
else
{
partner_request($_POST['id']);
echo "A request has been sent to the user";
}

Link to comment
https://forums.phpfreaks.com/topic/233821-how-do-i-debug-a-post/
Share on other sites

hmmm looks like I have nothing in the POST array.  Is my form wrong or something?

 

<form action="../partnerRequest.php" method="post">
<button class="submitlink">
	<span class="f_right">Associates</span>
	<img src="../assets/img/becomeassoc.jpg" class="mrs vmiddle" alt="Associates" />
</button>
</form>

Try this inside your <form>;

 

<input type='hidden' name='id' value='someValue /'>

 

Obviously change someValue to whatever value you want passed to your script.

 

I got the id to be passed into the array with the hidden input but there is not value outputted with

 

<input type='hidden' name='uid' value='<?php $info['id'];?>' />

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.