In the php script I have:
<?php
$User="b4auser";
$Password="12345%";
?>
In the Activity, I want to extract those 2 values from the script:
Dim strUser as String = the corresponding value from php script which is b4auser
Dim strPwrd as String = the corresponding value from php script which is 12345%
Thank you
<?php
$User="b4auser";
$Password="12345%";
?>
In the Activity, I want to extract those 2 values from the script:
Dim strUser as String = the corresponding value from php script which is b4auser
Dim strPwrd as String = the corresponding value from php script which is 12345%
Thank you