Given:
var symLurls = [ 'a.html','b.html', ];
var symLnames = [ 'a name','b name', ];
var symLdates = [ '04-07-06','04-06-06', ];
var symLrisks = [ level 1, level 1, ];
now that is on a website... simple dumpfile that I need to read into php and make arrays out of... i truncated the listings but that is the format... at the end of the arrays posted there is always a comma, don't know why, thats just how its dumped
how would I go about reading each line 's vars into a php array (non-keyed) with the same name as given above
as stated, this is all i'm given as a dump file, I have no control of how its dumped
im running php 5
now I'd assume u could use fopen(url,r) but that will read everything... not really sure how to read just one line, and after that how to break the data out
any help is appreciated!!