$result = mysql_query("SELECT * FROM $table WHERE Name = '$Name' "
; $row = mysql_fetch_array($result);
echo implode ("&",$row);
This is being accessed via llHTTPRequest()
But the returnd data from http_response() is double&double&talk&talk:-
eg.
John Doe&John Doe&3301B&3301B&No comment&No comment
I can use it since the data is all there and I can extract it but why am I getting it double.
It doesn't happen with local access on the website so perhaps it is a quirk of the HTTP link?????????