I have a script, that when a variable is given to it using the GET method, it echoes the variable. I want to take this variable and use it on another script. This is what I have done
<?php $ch = curl_init("http://website.com/test.php?str=test");
$response = curl_exec($ch);
curl_close($ch);
echo $response; ?>
But the $response variable cointains this:
1
I don't know what I have done wrong but if someone can help me, I would really appretiate it.