Hello
i just have a quik qustion i hope someone can answer this because its driving me crazy trying to work it out.
i want to have like a flatfile database (with say 100 lines) and in the database, 'presume' i will be using "|" as the deliminator. (the seperator between the fields. (3 fields in total)
so my database would look like this.
line1: 1|field2_data|field3_data
line2: 2|field2_data|field3_data
line3: 3|field2_data|field3_data
line4: 4|field2_data|field3_data
line5: 5|field2_data|field3_data
line6: 6|field2_data|field3_data
line7: 7|field2_data|field3_data
etc etc all the way to line '100'
ok, so now i have my text flatfile' db.
i want to use a php script to execute certain lines of the db.
presume in field2 of every line in teh db is a url (a different url)
and i want to execute the url on line6' of the db. so my script would be something like this...
http://mysite.com/url.php?id=6
and after going to that url it would go through the db, and find $linedata[2] of $id=6
so now that you understand what im trying to do, what am i having problems with? well basically i dont have a clue where to start. if someone could give an example of what i would need to put in a php script to do this 'an example' or lead me to a webpage with information that could be useful id be grateful
ryza~