I want to make a PHP CSS editer but I don't know how to go about doing this, I really don't want to be spoon fead but can you help me just get it started? Thanks in advance.
It all depends on how advanced you want it to be. The simplest version would be to open a CSS file with PHP, get its contents, and then echo it into a textarea. When you're done editing, then you submit the form and have the text area value overwrite the contents of the CSS file. If you want get more advanced than that, you're looking at a lot of regular expressions and parsing through a file and maybe storing values in a database. It isn't impossible, but it's a lot of hard work.
__________________ Want new web resources every day? - Follow me on Please login or register to view this content. Registration is FREE
Well at 1st I just want a base, but I would be back with questions how to do some stuff that I would like to put in there. Can I have a base code please?