1
I added a one page script to the XOOPS framework using this as my guide:
https://xoops.org/modules/smartfaq/faq.php?faqid=253That worked great but my problem is more specific to PHP.
How can I read a variable from the querystring if the case does not match? Example: I want the value for 'subject' when the querystring could look like any of the following:
contact.php?subject=Blah
contact.php?Subject=Blah+Blah
contact.php?SUbject=Blah%20Blah%20Blah
Obviously there may be more variations but you get the idea.
I need to use the php script to pull this off. Adding a rewrite rule to Apache for this issue is out of the question for this project.
Thanks for any help!