Hi !
I'm building a script that can fetch some things from a gallery site and after that you can select witch ones you want and add it to a database.
this is what i have:
http://kingsize.1go.dk/array.php <- the script
http://kingsize.1go.dk/array.txt <- the source of the script
http://kingsize.1go.dk/mob.htm <- the page it fetches from
I need to know how to put every information of one item in an array. The array should look like this:
Array
(
[$i] => Array
(
['Url'] => $url
['Description'] => $description
['Pics'] => $pics
['Category'] => $category
)
[$i] => Array
(
['Url'] => $url
['Description'] => $description
['Pics'] => $pics
['Category'] => $category
)
)
where you add an array of data to the array in the loop.
And i also need to know how to read all the things out of the array if the only thing i have is the value of $i.
Any help i highly appreciated... THANKS... 🙂