> Can this be done with only php, or would i need to put javascript as well?
JavaScript is useless. It only works in one context, and that is when someone downloads it to their computer (using a webbrowser) and has it set to run. Clearly, this isn't such a situation.
No I can't really give entire details. I might as well be running the scraping software. Oh by the way, it's called scraping, not scrapping. Perhaps that's why Google didn't give you the right results. You did Google, right?
Your steps can roughly be broken down into obtain scrapable data (webpage, screen data, whatever), parse this appropriately, and extract relevant information. That's the general method regardless of language and what you are scraping.
Obtaining a remote webpage is relatively easy. You have to find the right functions in your language, or if they don't exist code a small sockets app, and grab the data.
The real trouble is in efficiently parsing, and this becomes a Comp Sci exercise depending on the complexity. The simplest thing might be regular expressions, so if they fit the bill, you can have fun with RegEx. Otherwise, you'll be writing a more complex parser.
Once you have a parser that can filter the page, run it through your acquired data, and extract the important tokens to an appropriate storage. You probably have experience with MySQL database, although pretty much any sane data source like another DBMS or XML file or flat file or whatever can make do.
Have fun googling.