Home | Reviews | GUIpedia | Forum | Fun500
Brandon | Making a CMSI'm thinking I might make my own CMS in PHP, mainly because I used CMSimple and got used to the simpleness and because its so hackable I can't really use it anymore, and I need a project I could actually do. So I think I will work on my own, starting with the simple features like the ones in CMSimple and maybe expanding later to include more advanced functions. | 2008-11-19 | 2:07 PM |
ksr | Re:Making a CMSSounds like good stuff. I remember on the old fbtk forum when someone realised you could use freebasic as a script running on a windows server, someone actually made a simple CMS in FB.
If anyone's interested, the basic idea was:
[code]
option escape
print "Content-type: text/htmlrnrn";
print environ(environ("QUERY_STRING"))[/code] | 2008-11-19 | 2:21 PM |
Todd | Re:Making a CMSLooks like Perl. lol ;)
I have plans to make my own CMS too. It's on my list of future projects. I have close to 100 ideas for future projects and software development ideas. | 2008-11-19 | 2:44 PM |
aguma | Re:Making a CMSwhat's option escape? | 2008-11-19 | 8:13 PM |
ksr | Re:Making a CMSoption escape allows you to use the escape sequences that are used in C strings (like r and n). You need this because you need rnrn to mark the end of a HTTP header. | 2008-11-20 | 12:03 PM |
Todd | Re:Making a CMSYeah I remember seeing it in some old Perl scripts. Since Perl is also a scripting language for shell scripts, you have to specify HTTP headers and rnrn separates the headers from the content. | 2008-11-20 | 1:09 PM |
Other
2021 Brandon Cornell