I am about as new to PHP as you can imagine, I was showed two days ago how to dynamically create a portfolio page ( http://www.avenirex.com/v4/large_image.php ) using a url entered.
I am sure there is a way to make it simpler (and with cleaner urls) using a text file database, but I have no idea even what to search for on the web.
The text file / database would have three variables per "project" item
title, image, description
example:
final_project: studio final, final.jpg, final project from school
and so on for each project or item I enter into the text file
the php file (above) has just those three simple parts, I just need a way to do "large_image.php?id=final_project" or something along those lines, and have it create the page for me.
1) how do I set up a simple text file (mysql databases and such seem like overkill, but then I don't do this stuff ever) with the projects and their respective variables listed
2) how do I set up the .php file so that it grabs (based on the url entered) the right "project" and its respective variables and creates the 3 dynamic parts of the page (echo? print?)
If possible, a solution would be mindblowingly wonderful, but any help as to what I should even search for on google or elsewhere would be of immense help too. I'm sorry this is long, and I'm sorry I don't know jack about php, but I'm learning, I promise 😃
Thanks for the help in advance,