Hi,
Trying to POST a variable to a PHP script with CB Auto actions.
For now the script only echo's back the received POST variable.
I can see that the script is called and returns the "OK".
The problem is that the script does not seem to receive any POST variable I put in Auto actions Headers.
Auto action header:
Trigger: Manual 'Click to Execute'
Conditions: none
Action:
Methode = POST
URL = url to script
Header Key= cb_id
Header Value= [user_id] (or anything I put here)
Script:
<?php
echo "OK, $_POST["cb_id"]";
?>
also tried echo "OK,$_POST[0]";
I would expect to see the user_id being echo'd or anything I put in the Header value, but only get OK, back.
What am I doing wrong?