How can I get data from the following link? the page update every fiew minutes. I want to get all data from this (another site) page and store my sql database so that I can use them anyway. Is it possible? Please help.
Sure. Fetch the page, parse data, and store in MySQL. There are many examples on the web and here on DP. Does the data change on a scheduled basis? If so, you need to repeat the process and update the MySQL data as needed. Also, you must know that if the site changes the page format it will break your "screen scraping" code. http://tinyurl.com/l7lcva
Make sure the following is in your php.ini file. allow_url_fopen = On Then use file_get_contents("http://dsebd.org/latest_share_price_all.php"); to get the source of the page. From there, use the data as needed.
Yea if u doo file_get_contents("http://dsebd.org/latest_share_price_all.php"); it will pull the full source into your site and show that
CURL would be the most accurate way of fetching external data ( set referrer to something not too scary ).
Deal all of wellwisher Thanks for your help. I did this successfully. Special thanks to 'Social.Network'