Hi, I'm trying to set an array as JSON.
This is the array of Strings:
$array = array("http://www.whatever.com/images/$row[1].png", "2346", "55");
( Where row[1] it's the name of the picture gotten from the D😎
The way I encode it to JSON:
$jsontosend = json_encode($array);
The way it's encoded:
["http:\/\\/images\/whatever.png","2346","55"]
How can I make that URL right? so that I can use it latter?
Thank you very much for your time.