How can I get the variable value
-----------------------------------------------
PHP CODE
-----------------------------------------------
CODE
<?php
if(isset($_REQUEST['param'])){
$sl_param = $_REQUEST['param'];
....
SQL CODE
....
$return = 7;
}else{
$return = -1;
}
?>
-----------------------------------------------
I need get the value of $return variable.
I see too much examples getting the "string body" param of:
CODE
http_response(key request_id, integer status, list meta_data, string body)
But... My page return too much data... I need get JUST the value of variable.
I'm trying understand the param "list meta_data" ... But all the times is empty... What a can get in this param...
I have read the wiki:
http://lslwiki.net/lslwiki/wakka.php?wakka=http_response
and
http://wiki.secondlife.com/wiki/Http_response
Inthis last:
• list metadata – List of HTTP_* constants and attributes
But how I get this if all is empty...
What I need to do to get the $return value?
TYVM!!
-------
(-: Sorry my english
