Jump to content

php4 or 5 extensive mail script


ldoozer

Recommended Posts

Hi all, I have been using a free mailer script for a while now from http://www.dtheatre.com/scripts/formmail.php which has been great but have just tried to use it on a new server which only supports PHP v4 and 5. Does anyone know of any good mailer scripts for these version???

Thanks
Steve
Link to comment
https://forums.phpfreaks.com/topic/28559-php4-or-5-extensive-mail-script/
Share on other sites

Its a setting issue in that case if thorpe cannot find any calls to any superglobal arrays. Your PHP3 server has a setting called register_globals enabled. This allows you to use $var instead of $_POST['var'] or $HTTP_POST_VARS['var']. register_global can create a security exploits in your code if you are not careful and, thus the decision from the PHP Devs to disable this setting by default as of PHP4.2 (or PHP4.3 cant remeber which version), also this setting will be going completely too as of PHP6.

However for a decent mail script. I have heard a few members recommending a mail script called phpMailer

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.