eskimowned Posted September 25, 2006 Share Posted September 25, 2006 If there is anyone who can tell me where I'm going wrong here that would be awesome. [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 echo"Dear $first"?><p>Sincerely,<br> Shauns Web test </p>';// Add an address to send to. $mailer->AddAddress('shaun@designatedassociates.com', 'shaun');if(!$mailer->Send()) { echo 'There was a problem sending this mail!'; } else { echo 'Mail sent!';} $mailer->ClearAddresses(); $mailer->ClearAttachments(); ?> <?phpmysql_free_result($UpdateCustInfo);?>[/code]Any help anyone can offer, is as always greatly appreciated. Quote Link to comment Share on other sites More sharing options...
fenway Posted September 25, 2006 Share Posted September 25, 2006 What is not working? Quote Link to comment Share on other sites More sharing options...
eskimowned Posted September 25, 2006 Author Share Posted September 25, 2006 Two things actually: The MYSQL problem is the update statement at the top, its not updating the table, doesn't produce an error either. The other poblem I'm having with it, is displaying the form variables with the HTML body of the PHPmailer. Any help is always greatly appreciated. Quote Link to comment Share on other sites More sharing options...
fenway Posted September 25, 2006 Share Posted September 25, 2006 Well, i don't see an update statement... you mean the insert statement? And I'm not sure what you mean by the other problem. Quote Link to comment Share on other sites More sharing options...
eskimowned Posted September 26, 2006 Author Share Posted September 26, 2006 Sorry - I'm an idiot - yes its the INSERT that is not working. My apologies I really need some sleep. If anyone could help that would be magic. Also changed the title. My Bad! Quote Link to comment Share on other sites More sharing options...
fenway Posted September 26, 2006 Share Posted September 26, 2006 Use mysql_error() and see what the problem is. Quote Link to comment Share on other sites More sharing options...
eskimowned Posted September 27, 2006 Author Share Posted September 27, 2006 The error I'm getting is:Parse error: syntax error, unexpected T_VARIABLE in /hsphere/local/home/designat/womeninbusiness.co.uk/PHPdocs/phpmailer/invoicemail.php on line 15 Quote Link to comment Share on other sites More sharing options...
fenway Posted September 27, 2006 Share Posted September 27, 2006 Well, that's a PHP error... on the $mailer->Body line, I think... not sure if PHP likes multi-lined strings, but I doubt you can imbed another PHP block inside. Quote Link to comment 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.