Joe,
Have you tried using the $_POST array instead of the $_REQUEST array?

<?php
//if "email" variable is filled out, send email
if (isset($_POST['email'])) {

//Email information
$admin_email = "joe@actionline.com";
$email = $_POST['email'];
$subject = $_POST['subject'];
$comment = $_POST['comment'];


The form puts items in the $_POST array not the $_REQUEST array.  Your condition resolves to false and your conditional exits with out doing anything



On Sun, Dec 29, 2019 at 5:58 PM David Schwartz <newsletters@thetoolwiz.com> wrote:

I’d ask them, especially if they sent you the code.

In particular, I’d see if they changed their PHP recently.

-David Schwartz

On Dec 29, 2019, at 5:16 PM, Joe Lowder <joe@actionline.com> wrote:

For years, I have used bluemail form input for a simple way to invite comments from visitors to my websites; but recently discovered that this quit working:

http://www.upquick.com/message/

So, I asked bluehost support for a remedy and they sent the code sample shown below, which I uploaded to a test site: upquick.com/message/forminput4.htm to try to use, but it does not work.

What do I need to change to get this to work?:

---------------------------------------------------
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss


--
James

Linkedin