How do i make java read this php file. this php file should be read from it url: http://www.example.com/my/php/doc.php (this is not the real url)
//from http://www.example.com/my/php/doc.php
<?php
echo($strServer);
echo($strUrl);
echo($strdbName);
echo($strdbUser);
echo($strdbPass);;
echo($Name);
?>
by using java application it should be able to read php echo and display in netbean. I hope my explanation is brief and simple enough. any idea everybody