So I'm having a problem with a form I've made so one user can e-mail other users based on role fans
, players
or the admin
.
E-Mail form to users based on role
70 Views Asked by Robert F Boord At
2
There are 2 best solutions below
2

The two files are located in the same folder? In order to debug if the file is working you can "echo" a dummy content at the beginning of the file to test that you are going to that file (echo "worked";), then you can echo your $_POST data and check it, maybe you must check if $_POST is set : if( (isset($_POST)) AND (isset($_POST['user_name'])) ){}
500 "Internal Server Error":
Documentation: http://www.cyberciti.biz/tips/http-error-500-internal-server-for-php-pages-and-solution.html (first page on google...)
You may be getting that error because of a .htacces file that is being "disturbed" by your code :) . But is generally caused by the php settings on your server. Check the integrity of the php (.ini) files on the system and search for any file that might be missing or incomplete.
EDIT:
Because you get an error when mailing.... check the part of your system php files (.ini) that are related to that.