Jump to content

Dreamweaver Update Db Script Help


southafricadude

Recommended Posts

Hi there,

 

I am not a proper coder, and am using the built in Dreamweaver options to display some tables and do some updates to tables.

 

I have a form on a php page to update a record, which works fine, but I would like the page to send a php email of the contents of the form either before or after it updates the database.

 

How can I do this? I think the code that Dreamweaver uses to update the table and redirect is this:

 

 

$updateGoTo = "thank-you.php";

if (isset($_SERVER['QUERY_STRING'])) {

$updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";

$updateGoTo .= $_SERVER['QUERY_STRING'];

}

 

header(sprintf("Location: %s", $updateGoTo));

}

 

 

What I would like to do is insert a script there somewhere, that will send an html email to a recipient with the information contained in the form, so that they are notified of the update, and what the contents of the update are.

 

Is there someone on this site who could explain to me where to insert the code for the php email, or explain a better way to do it?

 

Thanks for the help

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.