Hi, I am trying to use the http request node to send data to my server on the godady website. I don’t know how to read the data on the other end. Here is what i have tried. So far i haven’t been able to see any data on my server.
List your PHP script and describe what settings you have in your http request node, or upload a screenshot of your planner. You are seeing things on your server log so that part is OK. It has to be either the http request node or the PHP script.
Also, maybe the 0.5 is too fast and something happens because of that?
Try making it 5 seconds just for testing.
So far, everything you’re doing is looking OK to me.
I attached a screen shot of the planner. the x is where i put my domain name. I changed the time to 5 sec and still no luck
here is the php code I am using
`
testing
<?php
if($_POST['value']){
$v = $_POST['vaue'];
echo "The value coming in is: ".$v;
}
?>
`