I have never used mysql in my life before but I am reasonably experienced with PHP. I have always used files to store any data I need and never used mysql. I have more data to store this time and am not sure if it is better to stick with what I know or to try mysql.
What are the advantages of mysql compared to files?
What I have to do is store all the GET data from an image and how many each image has been viewed. There can be quite a large amount of combinations of these variables like below:
image?a=1&b=5&height=50&width=70&im=2
so I would make need to store this "a=1&b=5&height=50&width=70&im=2" and then store how many times it had been viewed.
Should I use a file named "a=1&b=5&height=50&width=70&im=2" and then have the contents as the views or should I learn mysql (don't have a clue with it)