PHP echo all post variables for debug

PHP echo all post variables for debug

You started your session, then you asked if it is a post request or not. Then you checked if that post variable isset() to start your code. Unfortunately the code never run and you have no idea what happened. Add the 2 lines in red in the following code to find out...
PHP echo all post variables for debug

How to add / remove month(s) to a date in PHP

This is an easy function to add or remove months from a date in PHP. There is a limitation, you can only subtract up to 999 years, but you can change that by increasing the 12000 number in the code, to whatever you want to. function add_month($strbegin, $count) {...