Jump to content

n00bert

Members
  • Posts

    18
  • Joined

  • Last visited

    Never

Everything posted by n00bert

  1. I'm an idiot... I just noticed I had this running a few lines above all my other code mysql_query("UPDATE ushits_orders SET customer_id='".mysql_insert_id()."', session_id = '0' WHERE session_id='".$session."' "); Sorry I wasted your time guys.
  2. yeah, the query works fine... it just seems like it's not concatenating the $strMainbody for that area... idk
  3. n00bert

    Spaces

    You could do something like this that I found using google. <? $str = "This is just some text"; // use two spaces for the seperator while (sizeof ($array=explode (" ",$str)) != 1) { // use one space for the glue $str = implode (" ",$array); } echo $str; ?> hope that helps.
  4. Yes, I know the subject for this thread is horrible but didn't really know how to sum it up. XD anyway what I am doing here is sending an email invoice to customers.. The problem is that the emails don't contain any products. Here is that section of code for the script. <?php $strMailbody = "<table width=\"600\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"margin:0 auto;\"> <tr> <td><strong>Billing Information</strong></td> <td><strong>Shipping Information</strong></td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>".$_POST['first_name']." ".$_POST['last_name']."</td> <td>".$_POST['sfirst_name']." ".$_POST['slast_name']."</td> </tr> <tr> <td>".$_POST['address']."</td> <td>".$_POST['saddress']."</td> </tr> <tr> <td>".$_POST['city'].", ".$_POST['state']."</td> <td>".$_POST['scity'].", ".$_POST['sstate']."</td> </tr> <tr> <td>".$_POST['postal']."</td> <td>".$_POST['spostal']."</td> </tr> <tr> <td>".$_POST['country']."</td> <td>".$_POST['scountry']."</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td><strong>Home Phone:</strong>".format_phone($_POST['hphone'])."</td> <td> </td> </tr> <tr> <td><strong>Cell Phone:</strong>".format_phone($_POST['cphone'])."</td> <td> </td> </tr> <tr> <td><strong>Email:</strong>".$_POST['email']."</td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </table> <table width=\"600\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"margin:0 auto; padding-top:20px;\"> <tr> <td align=\"center\"><strong>Item</strong></td> <td align=\"center\"><strong>Product Name</strong></td> <td align=\"center\"><strong>Dimensions</strong></td> <td align=\"center\"><strong>Price</strong></td> </tr>"; $cart = mysql_query("SELECT * FROM ushits_orders, ushits_products, ushits_packages WHERE ushits_orders.package_id = ushits_packages.package_id AND ushits_packages.package_product_id = ushits_products.product_id AND ushits_orders.session_id = '".session_id()."' AND ushits_orders.order_step = '1'"); while($row2 = mysql_fetch_assoc($cart)){ $strMailbody .= "<tr> <td align=\"center\"><a href=\"http://www.u-shits.com/beta1/images/customer_images/".$row2['image']."\"><img src=\"http://www.u-shits.com/beta1/images/customer_images/tb_".$row2['image']."\" /></a></td> <td align=\"center\">".$row2['product_name']." (".$row2['package_name'].")"."</td> <td align=\"center\">".$row2['dimensions']."</td> <td align=\"center\">".$row2['package_price']."</td> </tr>"; } $strMailbody .= "</table>"; $strFrom = "[email protected]"; $strTo = $_POST['email']; $strSub = "Your u-shits Invoice"; mail($strTo,$strSub,$strMailbody,"From:$strFrom\r\nReply-to: $strFrom\r\nContent-type: text/html; charset=us-ascii"); ?> here is the code that's not working $cart = mysql_query("SELECT * FROM ushits_orders, ushits_products, ushits_packages WHERE ushits_orders.package_id = ushits_packages.package_id AND ushits_packages.package_product_id = ushits_products.product_id AND ushits_orders.session_id = '".session_id()."' AND ushits_orders.order_step = '1'"); while($row2 = mysql_fetch_assoc($cart)){ $strMailbody .= "<tr> <td align=\"center\"><a href=\"http://www.u-shits.com/beta1/images/customer_images/".$row2['image']."\"><img src=\"http://www.u-shits.com/beta1/images/customer_images/tb_".$row2['image']."\" /></a></td> <td align=\"center\">".$row2['product_name']." (".$row2['package_name'].")"."</td> <td align=\"center\">".$row2['dimensions']."</td> <td align=\"center\">".$row2['package_price']."</td> </tr>"; } that piece of code is not displayed in my emails.. any ideas?
  5. Ok, I've disabled register_globals again and now i'm using $_GET['page'] instead of page.. everything works great.. Thanks for all the help folks!
  6. ok seven you were correct. I tried to echo $page and I got nothing. So I enabled register_globals in my php.ini and now everything works. Andy thanks you as well for the advice. BTW.. should I not enable register globals? is there a better way around this?
  7. ummm I just figured you knew what a switch function was.. my apologies. <?php switch($page){ default: include 'quotes.php'; break; case quotes: include 'quotes.php'; break; case msgs: include 'messages.php'; break; } ?>
  8. ok I have been using this switch function with no problems on my old server. Now that I have switched to a new server it no longer works. So i'm almost positive it's a setting in the php.ini or something. It will display the default: just fine but it will not display any of the cases..
×
×
  • 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.