I am trying to send data to PHP from RMXP with the following method.
url = "http://localhost/rpg.php?username="+$username+"&password="+$password
$RPG=Win32API.new('shell32.dll','ShellExecuteA',%w(p p p p p i),'i')
$RPG.call(0, 'open', url ,0, 0, 1)
As you can see, it is used to call the web browser for input data to PHP.
It is successful input data to PHP. However, I do not want to display the web browser.
Is there any method to skip the web browser?
OR
Is anyone know the method that send data to PHP not through the web browser?
P.S:In the case, PHP conncet to the mySQL and appserve
url = "http://localhost/rpg.php?username="+$username+"&password="+$password
$RPG=Win32API.new('shell32.dll','ShellExecuteA',%w(p p p p p i),'i')
$RPG.call(0, 'open', url ,0, 0, 1)
As you can see, it is used to call the web browser for input data to PHP.
It is successful input data to PHP. However, I do not want to display the web browser.
Is there any method to skip the web browser?
OR
Is anyone know the method that send data to PHP not through the web browser?
P.S:In the case, PHP conncet to the mySQL and appserve