Jump to content

alan543

Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

alan543's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. It's ok I managed to do a workaround. Thanks for your help anyway. Cheers, Alan
  2. Thanks for that. That works great for passing the value of the checkbox (i.e. on) But It's the other values in the row that I need to pass on if the checkbox is checked? Any ideas? Thanks
  3. Hi Folks, any help appreciated here. I have a simple Table (Table1) with 3 fields (ID, Date, Value). So if I query the DB for a certain date it lists the ID and value of all rows with that date. What I need to do is have a checkbox next to each table row and only the ID & Value of the rows that are checked should be posted to the next page where I will do a SUM to add the values together. Does anyone have any ideas on the best way to do this? Thanks in advance... Alan
  4. [!--quoteo(post=348372:date=Feb 22 2006, 11:32 AM:name=Twentyoneth)--][div class=\'quotetop\']QUOTE(Twentyoneth @ Feb 22 2006, 11:32 AM) [snapback]348372[/snapback][/div][div class=\'quotemain\'][!--quotec--] Still no luck :S [/quote] Are you getting an error or is the mail just not sending? If it just isn't sending then it could be your php.ini setup.
  5. This always works for me... Assuming you have posted the email_address from a form. [code] $email_address = $_POST['email_address']; $subject = "Subject Here"; $message = "Message Here";      mail($email_address, $subject, $message, "From: Your Name<yourname@youraddress.com>\nX-Mailer: PHP/" . phpversion()); [/code]
×
×
  • 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.