I have tried looking but I cannot seem to find anything that relates to this issue, also I am very knew to PHP and mySQL. What I was wondering is if it is possible to use PHP to download tables from another website so that they can be put into a sql database.
what tables? Like HTML tables? Or tables from another mySQL database?
If from a mysql database, just export that database into an SQL file, and then import that SQL file into the new database (all done via phpMyAdmin).
it would be a html table, I do not have access to the database.
well, with an HTML table, you'd have to get the info into an array, and then figure out what the database structure is you want. I'm sure there are already software packages out there that do this, you just have to search for them.