I need to figure out how to do two things, but I do not know where to start.
The first things I want to do is in PHP is to be able to make a script that creates HTML pages. I know this can be done, but I have no idea what function(s) to use?
My second thing I want to be able to do, is I want to make a thing that increases, but instead of going 0-9, then to 10. Once it reaches 9, it would go to 'a'. So the increasment would look like
1,2,3...9,a,b,c,d...z, 10, 11, 12, 13, 14...19, 1a, 1b, 1c... 1z, 20,21...2a.
What function(s) would I use, or how would I do something like that?
Thank you in advance.