Hi I have a link that is download a CSV file, I would like to use the data inside to build my website, but I don’t wont to download the file, is there anyway to do it?
the link is: http://www.nasdaq.com/screening/companies-by-name.aspx?letter=0&exchange=nasdaq&render=download
Hi I have a link that is download a CSV file, I would like
Share
Use fopen() or PHP cURL library:
fopen() (Usually this is not as safe as cURL, and you might run into issues when fopen is not allowed in the PHP settings file, but it is a quick and dirty way to do it):
cURL (The preferred way. Read up on cURL here: http://php.net/manual/en/book.curl.php):