Hi all
I'm making a program (for my use only) which contains all the available information about atoms. I want to collect the information from Wikipedia, but if I copy & paste it takes my whole life!
For example, heres the Wikipedia page (sorry, it's in Finnish because I want to collect the data from that page) of Hydrogen. There is that long table on the right side where is the chemical information of that atom. Well, I want to make key-value pairs of the data. For example: The first row contains "Nimi: Vety" and the second one "Tunnus: H". I want to add an index to a PHP table like this
<?php
$info = array(array("Nimi", "Vety"), array("Tunnus", "H"));
Did you understand?
Well, thats what I'm doing. I hope you understand what I'm trying to say, because my English isn't so good - yet.