In this table, I have the fields \'title\' \'url\' \'keywords\' and description that I want data entered into. By the way, all the fields i have are \'id\', \'title\', \'descrip
You should serialize and send it to db
http://php.net/manual/en/function.serialize.php
That depends, because you would have to do a table in the database with time,date,competition,first_team,second_team columns
It really depends on how much you know at the moment, if you just want to log a plain array you can just serialize it into the database and unserialize it in the code
e.g. php Code:
$array = array ('one','two','three');
$array = serialize ($array);
var_dump ($array);
$unseralize = unserialize ($array);
var_dump ($unserialize);
Something tells me you might want to just put it over the database and query the server then do the loop.