Hi techs, I have an image http://www.globalcashsite.com/test3.php and I want to break it and extract country name into variable how I can do this? GlobalCashSite
OCR is how you would get text from an image but looking at the site's code it is not an image as the HTML comes out as.... <a href="http://www.infosniper.net/index.php?ip_address=87.113.X.X" title="Great Britain" target="_blank">Great Britain</a> Code (markup): In this case you just grab the text from the HTML
Hi man, this is not much difficult as I have done this in past few years before. I tried to find that file but still can't. That was extracting batch number from e-gold transaction processing. GlobalCashSite
Hi man How did you find html <a href="http://www.infosniper.net/index.php?ip_address=87.113.X.X" title="Great Britain" target="_blank">Great Britain</a> Code (markup): I can't see this any where. I visited my test3.php file and view source in Mozilla and it shows If I can store html outcome into variable then it will be easy to extract country name from it. How to store html outcome of this file to variable. GlobalCashSite
Hey you just highlight the country name with your mouse and rightclick > View Selection Source Cheers, Sab.
Thank you, then how to store html outcome of this test3.php into variable so I can extract country name from it. Do I need to explode() command to break it or what? GlobalCashSite
use regex (or DOM i guess) to get the text from a button. i have a script for the google OCR api if anyone is interested.