> How to retrieve data from a PHP file? (The value that will
> be retrieved of course it is echoed in the PHP file, and it
> will be shown in a TextBox in my VB program.. so I want to
> retrieve it to my EXE VB program that will put it inside a
> TextBox or something like that..)

From within a PHP file, you may use exec() or passthru() to execute an external program and return the results to the PHP script. Seems to me like VB should have something similar to execute a PHP script (perhaps through HTTP or something).

At any rate, I think you would probably need to ask this question on a VB mailing list, since they may be able to help you better. If your PHP script just echos something, then you'll need to find out what VB function there is to execute the PHP script and grab the value that is echoed.

-Ben

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to