eskimowned Posted September 20, 2006 Share Posted September 20, 2006 Is it possible to have multiple form actions. I want to use a form to update to MYSQL database and mail information, once the submit button is pressed. Is this possible? Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/ Share on other sites More sharing options...
Daniel0 Posted September 20, 2006 Share Posted September 20, 2006 You can't have multiple actions, but you do not need that for updating database entries and mail info. Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-95424 Share on other sites More sharing options...
Orio Posted September 20, 2006 Share Posted September 20, 2006 Why cant you do both the database update and the mail action on the same page...?Orio. Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-95428 Share on other sites More sharing options...
markbett Posted September 20, 2006 Share Posted September 20, 2006 you could... Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-95649 Share on other sites More sharing options...
eskimowned Posted September 21, 2006 Author Share Posted September 21, 2006 Excellent advice gents - I was hoping for a little more than "yes this can be done" :D. I'll clarify it a little better, I was probably a little vague: all I want to do is when the submit button is clicked it inserts a record into the database and email some information. How can this be done. Or would I do it by updating the database within the mail script the form action sends to.Any help anyone can give me is always greatly appreciated. Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-95902 Share on other sites More sharing options...
akitchin Posted September 21, 2006 Share Posted September 21, 2006 "Or would I do it by updating the database within the mail script the form action sends to."exactly. you can do as many operations as you'd like on the action page; i'd suggest updating the database first, and then mailing the information. Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-95904 Share on other sites More sharing options...
eskimowned Posted September 21, 2006 Author Share Posted September 21, 2006 Quality - Cheers geezer! I think I know how to get that to work.Just a quick question about the mail form - using PHPmailer how do you show form vairiables as part of the HTML body?Any help on that would be sweet.Cheers in advance. PEACE Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-95991 Share on other sites More sharing options...
AndyB Posted September 21, 2006 Share Posted September 21, 2006 [code]$message = "Dear ". $yourname. "<br/>";$message.= "Thanks very much for the order for ". $widget. ". We know you'll enjoy it.<br/>";$message.= "Yours insincerely, blah blah";[/code] Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-95992 Share on other sites More sharing options...
eskimowned Posted September 21, 2006 Author Share Posted September 21, 2006 [code]<?php $company = $_POST['Company'];$first = $_POST['FirstName'];$last = $_POST['LastName'];$event = $_POST['Event'];$price = $_POST['Price'];// Grab our config settings require_once($_SERVER['DOCUMENT_ROOT'].'/PHPdocs/phpmailer/config.php'); // Grab the FreakMailer class require_once($_SERVER['DOCUMENT_ROOT'].'/PHPdocs/phpmailer/MailClass.inc'); // instantiate the class $mailer = new FreakMailer(); // Set the subject $mailer->Subject = 'This is a test'; $mailer->isHTML(true); // Send the E-Mail // Body $mailer->Body = '<img src="http://www.womeninbusiness.co.uk/images/WIBsphere.jpg" alt="WIB logo" /><br /> <h2>WIB HTML test</h2> <p>Visit us <a href="http://www.womeninbusiness.co.uk" title="Women In Business">Women In Business.co.uk</a> for a loving community!</p> <?php "Dear ". $first. "<br/>";?><p>Sincerely,<br> Shauns Web test </p>';// Add an address to send to. $mailer->AddAddress('[email protected]', 'shaun');$mailer->AddAddress('[email protected]', 'Darren'); if(!$mailer->Send()) { echo 'There was a problem sending this mail!'; } else { echo 'Mail sent!';} $mailer->ClearAddresses(); $mailer->ClearAttachments(); ?> [/code]The bit I can't get to display is the <?php "Dear ". $first. "<br/>";?>Any ideas?Any help is always greatly appreciated Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-96047 Share on other sites More sharing options...
eskimowned Posted September 21, 2006 Author Share Posted September 21, 2006 [code]<?php require_once('../../Connections/Conn1.php'); ?><?phpmysql_select_db($database_Conn1, $Conn1);$query_UpdateCustInfo = "SELECT * FROM Customer";$UpdateCustInfo = mysql_query($query_UpdateCustInfo, $Conn1) or die(mysql_error());$row_UpdateCustInfo = mysql_fetch_assoc($UpdateCustInfo);$totalRows_UpdateCustInfo = mysql_num_rows($UpdateCustInfo);$company = $_POST['Company'];$first = $_POST['FirstName'];$last = $_POST['LastName'];$event = $_POST['Event'];$price = $_POST['Price'];mysql_query("INSERT INTO CUSTOMER (Company, `First Name`, `Last Name`, Event, price) VALUES ('$Company', '$first', '$last', '$event', '$price')");mysql_close(); // Grab our config settings require_once($_SERVER['DOCUMENT_ROOT'].'/PHPdocs/phpmailer/config.php'); // Grab the FreakMailer class require_once($_SERVER['DOCUMENT_ROOT'].'/PHPdocs/phpmailer/MailClass.inc'); // instantiate the class $mailer = new FreakMailer(); // Set the subject $mailer->Subject = 'This is a test'; $mailer->isHTML(true); // Send the E-Mail // Body $mailer->Body = '<img src="http://www.womeninbusiness.co.uk/images/WIBsphere.jpg" alt="WIB logo" /><br /> <h2>WIB HTML test</h2> <p>Visit us <a href="http://www.womeninbusiness.co.uk" title="Women In Business">Women In Business.co.uk</a> for a loving community!</p> <?php "Dear ". $first. "<br/>";?><p>Sincerely,<br> Shauns Web test </p>';// Add an address to send to. $mailer->AddAddress('[email protected]', 'shaun');$mailer->AddAddress('[email protected]', 'Darren'); if(!$mailer->Send()) { echo 'There was a problem sending this mail!'; } else { echo 'Mail sent!';} $mailer->ClearAddresses(); $mailer->ClearAttachments(); ?> <?phpmysql_free_result($UpdateCustInfo);?>[/code]I've also included a copy of the code to show the update record query, thats not working either, DOH!Any help anyone can give me on that as well would be awesome. Cheers everyone! Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-96081 Share on other sites More sharing options...
eskimowned Posted September 22, 2006 Author Share Posted September 22, 2006 can anyone help? It would be muchos appreciated. Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-96404 Share on other sites More sharing options...
warewolfe Posted September 22, 2006 Share Posted September 22, 2006 Hej, In regards to the "Dear.."; not printing.replace<?php "Dear ". $first. "<br/>";?> with<?php echo"Dear ". $first. "<br/>";?> Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-96408 Share on other sites More sharing options...
eskimowned Posted September 22, 2006 Author Share Posted September 22, 2006 I've just done the suggested change and this is what comes out in the email:WIB HTML testVisit us Women In Business.co.uk for a loving community!";?> Sincerely,Shauns Web test DOH!Any sugggestions would be greatly appreciated.Peace Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-96599 Share on other sites More sharing options...
eskimowned Posted September 22, 2006 Author Share Posted September 22, 2006 Please help - I'm so stuck! Apologies if this appears to be a noobish question. Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-96668 Share on other sites More sharing options...
eskimowned Posted September 22, 2006 Author Share Posted September 22, 2006 bttt Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-96809 Share on other sites More sharing options...
warewolfe Posted September 23, 2006 Share Posted September 23, 2006 <?php echo"Dear ". $first. "";?> should have been<?php echo"Dear $first" ?> Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-97099 Share on other sites More sharing options...
eskimowned Posted September 25, 2006 Author Share Posted September 25, 2006 Cheers for the help, I made the suggested change but this time nothing happened, the email came through but the php variable didn't come through. doh!I still cant get it to update the table either. Sorry to be a pain, but if anyone can shed any light on this it would be quality. Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-98010 Share on other sites More sharing options...
warewolfe Posted September 26, 2006 Share Posted September 26, 2006 Hej I suggest you check that the 'first name' field on the form that sends to your script is spelt right.WW. Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-98666 Share on other sites More sharing options...
eskimowned Posted September 26, 2006 Author Share Posted September 26, 2006 It is spelt right, just checked and double checked. If it had been that I would have been very upset. Still no joy I'm afraid. I'm assuming it must be something to do with PHPmailer. I'm getting so frustrated with this. Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-98756 Share on other sites More sharing options...
steveclondon Posted September 26, 2006 Share Posted September 26, 2006 Hi,Its simple. Your making the mail into the $mailer->Body so all behind the = sign must be in either ' and end in ' or " and end in ". So when you want to add the Dear at the end you should get ride of the <?php sign and the " and have something like this. </p>Dear '. $first. '<br/>'; Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-98762 Share on other sites More sharing options...
eskimowned Posted September 26, 2006 Author Share Posted September 26, 2006 That worked - you are a legend! Thanks to everyone who gave me suggestions, this is a bit of a learning curve for me, so all of your advice is greatly appreciated. Now I know I'm pushing my luck here - but has anyone any ideas why the insert record query at the top isn't doin anything? CheersLiverpool Eskimo Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-98809 Share on other sites More sharing options...
steveclondon Posted September 26, 2006 Share Posted September 26, 2006 if this is the one your starting with a select statment instead of an update statement. $query_UpdateCustInfo = "SELECT * FROM Customer";$UpdateCustInfo = mysql_query($query_UpdateCustInfo, $Conn1) or die(mysql_error());if you want more help on this start a new post all these pages take time to view Quote Link to comment https://forums.phpfreaks.com/topic/21417-multiple-form-actions/#findComment-98813 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.