What I need to put into my PHP to return a specific string or value in “event.response” ?
thanks [import]uid: 23063 topic_id: 17108 reply_id: 317108[/import]
What I need to put into my PHP to return a specific string or value in “event.response” ?
thanks [import]uid: 23063 topic_id: 17108 reply_id: 317108[/import]
[php]
echo (“hello world”)
[/php]
returns…
hello world
[import]uid: 24641 topic_id: 17108 reply_id: 64330[/import]
if you are well versed with PHP, then what ever you return to the browser that gets rendered is what you would return back to the event.response
so basically it will be what you want
\<? php
echo("whatever you want to return")
$number = 3
echo ("The number is $number")
?\>
cheers,
?
[import]uid: 3826 topic_id: 17108 reply_id: 64392[/import]
Thanks guys
I will try
thank you so much [import]uid: 23063 topic_id: 17108 reply_id: 64628[/import]