Hello, everyone, someone help me?
I'm having problems when trying to send a value of a variable in PHP,
below the script in php print
http://prntscr.com/88t380 or code words :
<?php
$numero = 1;
echo "Hello World";
echo $numero;
?>
below the AGC script
http = CreateHTTPConnection()
SetHTTPHost( http, "www.imeql.ind.br", 0 )
SendHTTPRequestASync( http, "teste.php" ,"$numero=6")
while GetHTTPResponseReady(http) = 0
Print( "Connecting..." )
Sync()
endwhile
response2$ = SendHTTPRequest(http, "teste.php")
response$ = GetHTTPResponse(http)
CloseHTTPConnection(http)
DeleteHTTPConnection(http)
// main loop
do
Print( "Server response: " + response$ ) //+ response2$ )
Sync()
loop
well I'm trying to send an arbitrary value for the variable, and print on the screen,
however, it is not getting the value I'm sending