I\'m trying to build a simple login system using . Everything works fine on MAMP on my laptop but when I upload the script to the se
I've had the same problem with $_POST being empty/NULL, and after spending 30 minutes searching SO and Google I finally found a solution that worked for me.
Since I don't know how to change the php.ini file for MAMP I edited my htaccess to include this:
php_value post_max_size 60M
php_value upload_max_filesize 60M
and I can var_dump($_POST) with the submitted input fine now.
Reference link: http://helpfulcoder.blogspot.ca/2011/01/empty-post-array-in-mamp.html