Form Posts & Emails with no Data Returned

I'm working on a php form that I'm trying to feed through GoDaddy's network.  I have a beginner's understanding and took code to create the php file that was linked in the "actions" part of the DW CS3 form's file.
The email was sent to me with all the identifiers.  However, nothbing was populated.  Further, the sender's email wasn't posted - this is what was listed for the sender:
[email protected]
The form can be reached here: http://www.sophisticup.com/SignUp.php
I think I'm missing something small but it is having a great effect on my final results.  Can anyone help me?
Thanks!
Below is my code for the linked "action" php file:
<?php
/* Subject and Email Variables */
$emailSubject = 'Sign Up Form';
$webMaster = '[email protected]';
/* Gathering Data Variables */
$FNameField = $_POST['firstname'];
$LNameField = $_POST['lastname'];
$TitleField = $_POST['title'];
$Add1Field = $_POST['address1'];
$Add2Field = $_POST['address2'];
$CityField = $_POST['city'];
$StateField = $_POST['state'];
$ZipField = $_POST['zipcode'];
$EmailField = $_POST['email'];
$PhoneField = $_POST['phone'];
$EmailPhoneField = $_POST['emailorphone'];
$CallTimeField = $_POST['timetocall'];
$RevenueField = $_POST['revenue'];
$GSizeField = $_POST['gsize'];
$CommentsField = $_POST['comments'];
$body = <<<EOD
<br><hr><br>
firstname: $firstname <br>
lastname: $lastname <br>
title: $title <br>
address1: $address1 <br>
address2: $address2 <br>
city: $city <br>
state: $state <br>
zipcode: $zipcode <br>
email: $email <br>
phone: $phone <br>
eorph: $emailorphone <br>
CallTime: $timetocall <br>
Revenue: $revenue <br>
GrpSize: $gsize <br>
Comments: $comments <br>
EOD;
$headers = "From: $email\r\n";
$headers .= "Content-type: text/html\r\n";
$success = mail($webMaster, $emailSubject, $body, $headers);
/* Results rendered as HTML */
$theResults = <<<EOD
<html>
<head>
<title>Sophisticup - Fundraising Boutique for the Home</title>
<meta http-eequiv="Content-type" content="text/html; charset=iso-8859-1">
<style type-"text/css">
<!--
body {
background-color: #D3E8A4;
font-family: Tahoma, sans-serif;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: normal;
color:  #000000;
text-decoration: none;
</style>
</head>
<div>
<div align="center">Thank you for your interest!  If requested, Sophisticup will contact you very soon.</div>
</div>
</body>
</html>
EOD;
echo "$theResults";
?>
Thanks in advance!

Tamist wrote:
The email was sent to me with all the identifiers.  However, nothbing was populated.
Not surprising. You assign all the form values to variables that are never used, and use completely different variables that have no values to populate the email. Take this example:
$FNameField = $_POST['firstname'];
Then this this what you put in the email:
firstname: $firstname <br>
It should be this:
firstname: $FNameField <br>

Similar Messages

  • Form Posts & Emails with no Results

    I'm working on a php form that I'm trying to feed through GoDaddy's network.  I have a beginner's understanding and took code to create the php file that was linked in the "actions" part of the DW CS3 form's file.
    The email was sent to me with all the identifiers.  However, nothbing was populated.  Further, the sender's email wasn't posted - this is what was listed for the sender:
    [email protected]
    The form can be reached here: http://www.sophisticup.com/SignUp.php
    I think I'm missing something small but it is having a great effect on my final results.  Can anyone help me?
    Thanks!
    Below is my code for the linked "action" php file:
    <?php
    /* Subject and Email Variables */
    $emailSubject = 'Sign Up Form';
    $webMaster = 'emailremoved';
    /* Gathering Data Variables */
    $FNameField = $_POST['firstname'];
    $LNameField = $_POST['lastname'];
    $TitleField = $_POST['title'];
    $Add1Field = $_POST['address1'];
    $Add2Field = $_POST['address2'];
    $CityField = $_POST['city'];
    $StateField = $_POST['state'];
    $ZipField = $_POST['zipcode'];
    $EmailField = $_POST['email'];
    $PhoneField = $_POST['phone'];
    $EmailPhoneField = $_POST['emailorphone'];
    $CallTimeField = $_POST['timetocall'];
    $RevenueField = $_POST['revenue'];
    $GSizeField = $_POST['gsize'];
    $CommentsField = $_POST['comments'];
    $body = <<<EOD
    <br><hr><br>
    firstname: $firstname <br>
    lastname: $lastname <br>
    title: $title <br>
    address1: $address1 <br>
    address2: $address2 <br>
    city: $city <br>
    state: $state <br>
    zipcode: $zipcode <br>
    email: $email <br>
    phone: $phone <br>
    eorph: $emailorphone <br>
    CallTime: $timetocall <br>
    Revenue: $revenue <br>
    GrpSize: $gsize <br>
    Comments: $comments <br>
    EOD;
    $headers = "From: $email\r\n";
    $headers .= "Content-type: text/html\r\n";
    $success = mail($webMaster, $emailSubject, $body, $headers);
    /* Results rendered as HTML */
    $theResults = <<<EOD
    <html>
    <head>
    <title>Sophisticup - Fundraising Boutique for the Home</title>
    <meta http-eequiv="Content-type" content="text/html; charset=iso-8859-1">
    <style type-"text/css">
    <!--
    body {
    background-color: #D3E8A4;
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    font-style: normal;
    line-height: normal;
    font-weight: normal;
    color:  #000000;
    text-decoration: none;
    </style>
    </head>
    <div>
    <div align="center">Thank you for your interest!  If requested, Sophisticup will contact you very soon.</div>
    </div>
    </body>
    </html>
    EOD;
    echo "$theResults";
    ?>
    Thanks in advance!
    email removed  - moderator

    Hi, I utilized the script garywpaul provided and the results were the same.  The thank you message came up after hitting submit, the email again was sent with the odd address (email link removed), and none of the populated regions were filled in.  This is completely frustrating - GoDaddy thinks it's the coding from my end.  Can anyone provide additional insight here?  They are saying that plenty of people are successfully receiving form data.  I think they're saying we're all idiots!
    Below is the version where I utilized garywpaul's code:
    www.sophisticup.com/SignUpForum
    Sorry about the frustration level, here.  Thanks to you for your input in trying to remedy this issue.  Something that should be simple is becoming very painful!
    Below is my version of his script:
    <?php
    /* Subject and Email Variables */
    $emailSubject = 'Sign Up Form';
    $webMaster = '[email protected]';
    /* Gathering Data Variables */
    $fname=STRIPSLASHES($_POST['fname']);
    $lname=STRIPSLASHES($_POST['lname']);
    $title=STRIPSLASHES($_POST['title']);
    $add1=STRIPSLASHES($_POST['address1']);
    $add2=STRIPSLASHES($_POST['address2']);
    $city=STRIPSLASHES($_POST['city']);
    $state=STRIPSLASHES($_POST['state']);
    $zip=STRIPSLASHES($_POST['zipcode']);
    $email=STRIPSLASHES($_POST['email']);
    $phone=STRIPSLASHES($_POST['phone']);
    $emailorphone=STRIPSLASHES($_POST['emailorphone']);
    $calltime=STRIPSLASHES($_POST['timetocall']);
    $orgname=STRIPSLASHES($_POST['orgname']);
    $revenue=STRIPSLASHES($_POST['revenue']);
    $gsize=STRIPSLASHES($_POST['gsize']);
    $comments=STRIPSLASHES($_POST['comments']);
    echo "Thank you $fname for your submission!<br /><br />";
    echo "You have submitted the following information:<br /><br />";
    echo "Name: $fname  $lname<br />";
    echo "Title:  $title<br />";
    echo "Address: $street $city $state<br />";
    echo "Zip: $zip<br />";
    echo "Phone Number: $phone<br />";
    echo "E-Mail Address: $email<br />";
    echo "Comments: $comments<br /><br />";
    // checks if bot
      if ($_POST['address'] != '' ){
    die("Changed field");
    echo "$Thank you for the opportunity to serve you!  We will be in touch with you soon.";
    $contact="Put contact information here";
    $from_d="$email";
    $to_d="$email";
    $subject_d='Thank you for your response';
    $msg_d="Thank you $fname for your submission, find my contact information listed for your convenience.\n\n"
    ."$contact\n\n"
    . "You have submitted the following information\n\n"
    . "Name:  $fname  $lname \n"
    . "Street Address: $add1\n"
    . "City: $city\n"
    . "Zip Code: $zip\n"
    . "Phone Number: $phone\n"
    . "E-Mail Address: $email\n"
    mail($to_d, $subject_d, $msg_d, 'From:' . $from_d);
    /*this is to owner, change the email to owners when ready*/
    $from="$email";
    $to="[email protected]";
    $subject="Sign Up";
    $msg= "Thank you for choosing Sophisticup!  We will contact you soon.\n\n"
    . "Clients Name: $fname . $lname \n"
    . "Title: $title\n"
    . "Organization Name: $orgname\n"
    . "Street Address: $street\n"
    . "City:$city\n"
    . "Zip: $zip\n"
    . "Telephone: $phone\n"
    . "Email Address: $email\n";
    mail($to, $subject, $msg, 'From:' .$from);
    ?>
    [email address removed - forum moderator]

  • How can I send a post query with attached data using Labview?

    Hi,
    I need to send data (a file of 5KB) to a php server.
    In order to do it, I need to send a post request with attached data.
    I'm using Labview 6.1 and I have the Internet Toolkit.
    But I just see the Get Method. Isn't implemented the post method in Labview?
    Thanks for your help
    Best regards

    Hi,
    In order to use the POST request method as opposed to the GET request method I used a VI set up as shown in the attached GIF.
    From the front panel you need to provide values for the 3 inputs. "Bytes to read" is an arbitrarily large number that meets or exceeds the maximum number of bytes you expect as a response from your server. "Address" is just the URL of the server, e.g. "10.90.1.1" or "localhost" or "www.google.com". "Data in" is the actual request you're sending with the data included.
    "Data in" would be in a format similar to everything in the quotes below (important to have 2 carriage returns to finish the request);
    POST /phppage.php HTTP/1.1
    Content-Length: ??
    Host: http://www.mywebserver.com
    Content-Type: application/x-www-form
    -urlencoded
    email=[email protected]&password=mypassword
    For sending your data file you just have to set the requisite MIME-type and then include the file data in place of the form data in the example above.
    Hope this helps,
    Neil
    Attachments:
    LV_TCP_code.gif ‏4 KB

  • How do I save emails with original dates to a cd

    I am trying to save a sizable group of emails to a CD and have tried to create a folder and simply drag and drop each one.  This is both time comsuming and it leaves me with all the dates reflecting today instead of the original email dates.  Is there a way to copy a groupo of email "with original dates" to a CD.  Please advise - urgent

    Hello
    into mail , make a new mail box (plus button left angle of mail )
    move messages to archive into it ,
    then archive the new mail box ( right click option to archive )
    then burn into cd the "mbox" file in this way no risk to lose date
    Pierre

  • Submit a form through email with multiple signatures

    I have a form, where a number of people can digitally sign the form and email it to the next person. Designed in LiveCycle, with javascript and reader extended.
    On the first sign and email, everything works great. However when the next person gets the form signs it and tries to email it, the body and subject is replaced by:
    The attached file contains data that was entered into a form. It is not the form itself.
    The recipient of this data file should save it locally with a unique name. Adobe Acrobat Professional 7 or later can process this data by importing it back into the blank form or creating a spreadsheet from several data files. See Help in Adobe Acrobat Professional 7 or later for more details.
    Whats all the hocus pocus?
    edit: Something I noticed is that, with some digital signatures, I disable a good majority of the form to read only "lock fields", then when I email I get the above text replaced in the body of the email.

    I have a form, where a number of people can digitally sign the form and email it to the next person. Designed in LiveCycle, with javascript and reader extended.
    On the first sign and email, everything works great. However when the next person gets the form signs it and tries to email it, the body and subject is replaced by:
    The attached file contains data that was entered into a form. It is not the form itself.
    The recipient of this data file should save it locally with a unique name. Adobe Acrobat Professional 7 or later can process this data by importing it back into the blank form or creating a spreadsheet from several data files. See Help in Adobe Acrobat Professional 7 or later for more details.
    Whats all the hocus pocus?
    edit: Something I noticed is that, with some digital signatures, I disable a good majority of the form to read only "lock fields", then when I email I get the above text replaced in the body of the email.

  • Pop up new form(Purchase Order) with current data

    Dear All,
    i have created a COPY TO button in my addon form. Now my quiry is that when ever i press the COPY TO button the purchase order form will open with my addon form data. Kindly suggest me the code.
    Thanx
    Sanjoy Paul

    Hi...
             use this code...
    Try
    SBO_Application.ActivateMenuItem("2305")
           oForm = SBO_Application.Forms.ActiveForm
                OItem = oForm.Items.Item("4")
                Oedit = OItem.Specific
                Oedit.Value = vendor.ToString()
                rs1 = Nothing
                rs1 = OCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                'rs1.DoQuery(" Select Ur Table")
                'OItem = OPOForm.Items.Item("aaa")
                'Oedit = OItem.Specific
                'Oedit.Value = rs1.Fields.Item("Ur - Field").Value & ""
                OItem = OPOForm.Items.Item("bbb")
                Oedit = OItem.Specific
                Oedit.Value = rs1.Fields.Item("Ur - Field").Value & ""
            Catch ex As Exception
                SBO_Application.MessageBox(ex.Message)
            End Try
    REM Matrix
    OItem = oForm.Items.Item("38")
            oMatrix = OItem.Specific
            oCols = oPoMat.Columns REM Columns
    Oedit = oCols.Item("1").Cells.Item(1).Specific 'item no
                Oedit.Value = itmcd.ToString()
    It Will Work...
    Regards...
    Billa 2007

  • PDF file size grows each time form is saved (with no data changes). Why?

    I have an SAP Adobe form (PDF) and we are seeing a difference in the Save behavior between when it is viewed in Adobe Reader vs. the adobe plug-in(?) for Internet Explorer.
    When the form is viewed in Internet Explorer, every time the user saves the form the file size grows (even with no data changes in the form - i.e., open the form, hit save).  This is not true if the form is opened in Adobe Reader.
    The form in question has multiple pages but the only fields directly bound to the SAP source are a handful of identifiers (e.g., order number) and a dynamic table.  It appears from our testing that the more entries in the table when the form is created, the greater the size increase each time the file is saved.  The table length is not changed after the form is first generated.
    Is there a known difference in the behavior of Adobe Reader vs. the browser plug-in which would account for this difference?  Our users have Adobe Reader X installed on their machines.

    If this is an XFA form, as opposed to an Acroform, you should ask in the LiveCycle Desiger forum or a more relevant LiveCycle forum.

  • Offline Interactive PDF Forms Using EMail with WebDynpro for ABAP

    These is a tutorial on implementing Offline Interactive PDF Forms using Email to both send out and receive the form back using WebDynpro for Java.
    Is it possible to implement the same using WebDynpro for ABAP, specifically receiving the forms via email server.
    Regards,
    Mark

    Hi Mark,
    Check this out :
    https://www.sdn.sap.com/irj/sdn/interactiveforms-elearning
    Go to section :
    Send, Receive, and Process Interactive Forms via Email in SAP NetWeaver Application Server ABAP (RIG session 4A)
    and for the ABAP WebDynpro :
    SAP Interactive Forms by Adobe in Web Dynpro for ABAP (Session 3A) .
    I managed to make it work in my internal sytem.
    Goodluck.
    Cheers,
    Danny

  • Multiple page form to email with sessions doesn't send mail

    I am creating a multiple page form where a user can apply for finance. I am trying to use session to keep the user input values and then the last page sent the application by email.
    My problem is the last step where it doen't send the email. I'm not sure if it the session I'm using is wrong because a simple form without sessions works fine.
    here are the forms
    First page is the input for with variables
    <form action="Finance_form_proposal_Address.php" method="post" >
      <span id="sprycheckbox1">
      <input  name="Disclaimer" type="checkbox" value="yes">
      <span class="checkboxRequiredMsg">Please confirm that you have read and understood the Terms and Conditions.</span></span>
      <div id="F1"><table width="100%" border="1" align="center" cellpadding="3" cellspacing="2">
      <tr>
        <td align="right" bgcolor="#F7E4F8" ><strong>Title:</strong></td>
        <td align="left" bgcolor="#F7E4F8"><select name="Title">
              <option value="Mr">Mr</option>
              <option value="Mrs">Mrs</option>
              <option value="Miss">Miss</option>
              <option value="Ms">Ms</option>
              <option value="Dr">Dr</option>
              <option value="Rev">Rev</option>
            </select></td>
    etc..
    </form>
    The second form:
    Getting values and input new form
    <?php session_start();
    $_SESSION['Disclaimer'] = $_POST['Disclaimer'];
    $_SESSION['Title'] = $_POST['Title'];
    $_SESSION['Forname'] = $_POST['Forname'];
    $_SESSION['Middle_name'] = $_POST['Middle_name'];
    $_SESSION['Surname'] = $_POST['Surname'];
    $_SESSION['email'] = $_POST['email'];
    $_SESSION['DOB'] = $_POST['DOB'];
    $_SESSION['DOB2'] = $_POST['DOB2'];
    $_SESSION['DOB3'] = $_POST['DOB3'];
    $_SESSION['Gender'] = $_POST['Gender'];
    $_SESSION['checkboxGroup1'] = $_POST['checkboxGroup1'];
    $_SESSION['checkboxGroup2'] = $_POST['checkboxGroup2'];
    $_SESSION['home_phone'] = $_POST['home_phone'];
    $_SESSION['mobil'] = $_POST['mobil'];
    $_SESSION['marital_status'] = $_POST['marital_status'];
    $_SESSION['Occupancy'] = $_POST['Occupancy'];
    $_SESSION['Dependants'] = $_POST['Dependants'];
    ?>
    Form on second page
    <form action="Finance_form_proposal_Bank_Details_employment.php" method="post"> <input  name="Disclaimer" type="checkbox" value="yes">
        <div id="F1"><table width="100%" border="1" align="center" cellpadding="3" cellspacing="2">
      <tr>
        <td align="right" bgcolor="#F7E4F8" ><strong>Correspondence Address:</strong></td>
        <td align="left" bgcolor="#F7E4F8"><input name="Correspondence" type="checkbox" id="Correspondence" value="yes" checked="CHECKED">
          <label for="Correspondence"></label></td>
      </tr>
      <tr>
        <td bgcolor="#F7E4F8"><strong>Street:</strong></td>
        <td bgcolor="#F7E4F8"><input name="Street" type="text"></td>
      </tr>
      <tr>
        <td bgcolor="#F7E4F8"><strong>District:</strong></td>
        <td bgcolor="#F7E4F8"><input name="District" type="text"></td>
      </tr>
      <tr>
        <td bgcolor="#F7E4F8"><strong>Town:</strong></td>
        <td bgcolor="#F7E4F8"><input name="Town" type="text"></td>
      </tr>
    etc ..
    </form
    Third page
    Getting values
    session_start();
    $_SESSION['Correspondence'] = $_POST['Correspondence'];
    $_SESSION['Street'] = $_POST['Street'];
    $_SESSION['District'] = $_POST['District'];
    $_SESSION['Town'] = $_POST['Town'];
    $_SESSION['County'] = $_POST['County'];
    $_SESSION['Country'] = $_POST['Country'];
    $_SESSION['Years'] = $_POST['Years'];
    $_SESSION['Months'] = $_POST['Months'];
    $_SESSION['Street2'] = $_POST['Street2'];
    $_SESSION['District2'] = $_POST['District2'];
    $_SESSION['Town2'] = $_POST['Town2'];
    $_SESSION['County2'] = $_POST['County2'];
    $_SESSION['Country2'] = $_POST['Country2'];
    $_SESSION['Years2'] = $_POST['Years2'];
    $_SESSION['Months2'] = $_POST['Months2'];
    $_SESSION['Street3'] = $_POST['Street3'];
    $_SESSION['District3'] = $_POST['District3'];
    $_SESSION['Town3'] = $_POST['Town3'];
    $_SESSION['County3'] = $_POST['County3'];
    $_SESSION['Country3'] = $_POST['Country3'];
    $_SESSION['Years3'] = $_POST['Years3'];
    $_SESSION['Months3'] = $_POST['Months3'];
    Then there is a another form to fill in , wont show that as it is in principle the same.
    This is the last page that should sent the data to email:
    <?php
    session_start();
    /* Subject mail variables */
    $emailsubject = 'Finance application from PandKshop';
    $webmaster = '[email protected]';
    /* Gathering Data */
    $goods = $_POST['goods'];
    $amount = $_POST['amount'];
    $Total_Cash = $_POST['Total_Cash'];
    $Deposit = $_POST['Deposit'];
    $Balance = $_POST['Balance'];
    $Payments = $_POST['Payments'];
    $Diclaimer = $_SESSION['Disclaimer'];
    $Title = $_SESSION['Title'];
    $Forname = $_SESSION['Forname'];
    $Middle_name = $_SESSION['Middle_name'];
    $Surname = $_SESSION['Surname'];
    $email = $_SESSION['email'];
    $DOB = $_SESSION['DOB'];
    $DOB2 = $_SESSION['DOB2'];
    $DOB3 = $_SESSION['DOB3'];
    $Gender =  $_SESSION['Gender'];
    $CheckboxGroup1 = $_SESSION['CheckboxGroup1'];
    $CheckboxGroup2 = $_SESSION['CheckboxGroup2'];
    $home_phone = $_SESSION['home_phone'];
    $mobil_phone = $_SESSION['mobil_phone'];
    $marital_status = $_SESSION['marital_status'];
    $Occupancy = $_SESSION['Occupancy'];
    $Dependants = $_SESSION['Dependants'];
    $Correspondence = $_SESSION['Correnspondence'];
    $Street = $_SESSION['Street'];
    $District = $_SESSION['District'];
    $Town = $_SESSION['Town'];
    $County = $_SESSION['County'];
    $Country = $_SESSION['Country'];
    $Years = $_SESSION['Years'];
    $Months = $_SESSION['Months'];
    $Street2 = $_SESSION['Street2'];
    $District2 = $_SESSION['District2'];
    $Town2 = $_SESSION['Town2'];
    $County2 = $_SESSION['County2'];
    $Country2 = $_SESSION['Country2'];
    $Years2 = $_SESSION['Years2'];
    $Months2 = $_SESSION['Months2'];
    $Street3 = $_SESSION['Street3'];
    $District3 = $_SESSION['District3'];
    $Town3 = $_SESSION['Town3'];
    $County3 = $_SESSION['County3'];
    $Country3 = $_SESSION['Country3'];
    $Years3 = $_SESSION['Years3'];
    $Months3 = $_SESSION['Months3'];
    $Sort_Code          = $_SESSION['Sort_Code'];
    $Account = $_SESSION['Account'];
    $Years_with_Bank = $_SESSION['Years_with_Bank'];
    $Months_with_Bank = $_SESSION['Months_with_Bank'];
    $CreditCard = $_SESSION['CreditCard'];
    $ChequeCard = $_SESSION['ChequeCard'];
    $Employment = $_SESSION['Employment'];
    $income = $_SESSION['Income'];
    $Income2 = $_SESSION['Income2'];
    $Occupation = $_SESSION['Occupation'];
              $Body = <<<EOD
    <br><hr><br>
    Goods: $goods <br>
    Amount: $amount <br>
    Total Cash: $Total_Cash <br>
    Deposit: $Deposit <br>
    Balance: $Balance
    Nine Monthly Payments of : £ $Payments
    Title: $Title <br>
    Forname: $Forname <br>
    Middle Name: $Middle_name <br>
    Surname : $Surname <br>
    Email: $email <br>
    DOB: $DOB/$DOB2/$DOB3 <br>
    Gender: $Gender <br>
    Home_phone: $CheckboxGroup1 Mobile phone: $CheckboxGroup2 <br>
    Home Phone number: $home_phone <br>
    Mobile Phone number: $mobil_phone <br>
    Marital_Status: $marital_status <br>
    Occupancy : $Occupancy <br>
    Dependants: $Dependants <br>
    Correspondence Address: $Correspondence <br>
    Street: $Street <br>
    District: $District <br>
    Town: $Town <br>
    County: $County <br>
    Country: $Country
    Years: $Years
    Months: $Months
    Street2: $Street <br>
    District2: $District2 <br>
    Town2: $Town2 <br>
    County2: $County2 <br>
    Country2: $Country2
    Years2: $Years2
    Months2: $Months2
    Street3: $Street3 <br>
    District3: $District3 <br>
    Town3: $Town3 <br>
    County3: $County3 <br>
    Country3: $Country3 <br>
    Years3: $Years3 <br>
    Months3: $Months3 <br>
    Sort Code: $Sort_Code <br>
    Account: $Account <br>
    Years with the Bank: $Years_with_Bank <br>
    Months with the Bank: $Months_with_Bank <br>
    CreditCards: $CreditCard <br>
    Cheque Card: $ChequeCard <br>
    Employment: $Employment <br>
    Income: £$income <br>
    Income Frequency: $Income2 <br>
    Occupation: $Occupation <br>
    EOD;
              $headers = "From: $email\r\n";
              $headers .= "content-type: text/html\r\n";
              $succes = mail($webmaster, $emailsubject, $Body, $headers);
    session_destroy();
    /* Results rendered as HTML */
    $theResults = <<<EOD
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
    <head>
          <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
          <title>Thank you! The Piano and Keyboard Shop Online</title>
          <link rel="STYLESHEET" type="text/css" href="contact.css">
          <link href="The Piano and Keyboard Shop.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <h2>Thanks for your application!<br />
    We endavour to get back to you as soon as possible with application results</h2>
    Please contact us on 0116 2541053 if you have any questions regarding your finance application
    Return to <a href="../index_main.php">Home Page</a>
    <div id="advertising">
        <div id="add_left"><a href="Contact.php">Contact us</a><br>
          <a href="About.php">About us</a><br>
          <a href="Finance.php">Finance</a><br>
    </div>
        <div id="adds_middle"><a href="term-conditions.php">Terms and Conditions</a><br>
          <a href="Privacy-Policy.php">Privacy Conditions</a><br>
          <a href="FAQ.php">FAQ</a><br>
    </div>
        <div id="adds_right"><a href="http://www.youtube.com/user/KeysoundWebsite">Follow us on YouTube</a><br>
          <a href="https://twitter.com/KeysoundUK">Follow us on Twitter</a><br>
          <a href="https://www.facebook.com/pages/Keysound/163590297024385">Follow us on Face book</a><br>
    </div>
      </div>
      <div id="advertising"> <div id="copy"><img src="files/Images/copyright.gif" width="19" height="22">
    </div> </div>
    </body>
    </html>
    EOD;
    echo "$theResults";
    ?>
    Is there something wrong with my sessions or just something in the code?

    Standard Apple Mail. I'm running Yosemite 10.10.1, and I'm amazed to see that About Mail says it's Mail Version 8.1 (1993), copyright 1995-2014 Apple Inc. 
    Interesting thought, do you think that it doesn't like to work with itself?  Actually, I'm fairly sure I've had the problem inside of other apps but I should document that.  I'll keep notes to see where this happens. 

  • Send Form to Email with Spry & PHP

    Hi there,
    i dont understand this page
    Submit
    forms with XHR
    What is in this page: SubmitChecker.php?
    How do I send the Form Information to an Email?
    Is there a tutorial from start to finish. All this tutorials
    or sample stop at the most important part. How to send.
    Thanks for help
    Denis

    Thanks for your little advice. I got it. And the send code
    should be placed in the php file called by the form ;-)
    TestPage
    Thanks a lot !!!
    Denis
    Which download? Can you please post a link to the download
    I know how to send forms with PHP. But now i want to try it
    without load a new page. The problem is, that i dont understand how
    to merge all the things. Spry, Form and PHP.
    I guess i have to put the sendscript inside here:
    // Callback function that will update the response_form1 div
    with the response that comes from the server
    function updateResponseDiv(req)
    Spry.Utils.setInnerHTML('response_form1',
    req.xhRequest.responseText);
    Or is this only the place for the message that the form has
    been submitted?
    Do i have to send the form inside the SubmitChecker.php
    It's a pity that all the samples stop at the important part.
    And that they are all in english.
    It will be greatful if you have a simple sample with
    Submitting a Form with Spry and PHP. Just to see how it works and
    where to place the code.
    cheers
    denis

  • Not receiving email with ETP.DAT file

    I have two users that are not receiving the email from the blackberry.net domain that has the ETP.DAT file attached. I set a new activation password on my blackberry and received the email. I have tried activating these guys a dozen time. I deleted them from the BES and re-entered their BES profile still nothing. I am only having problems with these two. When I activated myself I was able to trace the email through our SMTP Server right to my mail box. We are a Lotus Notes camp. Can anyone think of something I can try?

    1)  Apple ID: All about Apple ID security questions
    2)  See Here... ask to speak with the Account Security Team...
    Apple ID: Contacting Apple for help with Apple ID account security

  • How adobe form gets prepopulated with employee data?

    hai guys,
      i need to develop adobe forms in webdynpro abap to be deployed in portal.
    the user access the forms from ess screen after he logs on into portal.
    when the user clicks on the form,how to prepopulate the form with the employees data of the user(like pernr,reporting manager,etc etc)

    Hai Robert,
      I have spent time trying to figure the process.
    i ahve created a webdynpro application with a interactive adobe form in it.
    the problem is the submit button in the form doesnt trigger the code in on action method in the webdynpro.
    i am on ecc 6.0
    net weaver 7.0
    life cylce designer 7.0
    i ahve checkd other threads,
    activex is ticked in webdynpro,
    i have created the button from webdynpro library(i dotn have 2 separate native and activex libraries at all)
    any sugestions.

  • Populating Tabular Form Region Field With ITEM Data

    Hi,
    I have a date picker item, i want to be able to put that date in to all the rows in the field RENEWALDATE but ive tried to set that field to have the date item as default and it doesnt pick anything up. How can i do this?

    I sorted it in the end...I created a PLSQL process thats updates and sets the field RENEWAL to :P7_X, so when P7_X is submitted this process runs and updates all the rows displayed to populate the renewal date column with this value. I also intend on being able to select a particular trainer and populate all the rows with that one trainer user the same process.
    My situation is that certain staff have individual training sessions but some need to be in group sessions where by the trainer can update multiple people who say attended the Induction course on 12/04/2007, User selects the date and course presses retrieve and this brings back all staff on the course, the trainer can then pick his name, a renewal date and submit these, hence updating the field for every member of staff. Of course the update process is only assigned to a certain button and not on submit, so a trainer can amend a single individual out of the group and still submit the correct details. Pretty handy really

  • Adobe form saved from email has no data

    Hi.
    We generate Adobe Interactive Forms (developed in Adobe LiveCycle 8.0) from our SAP Netweaver environment.  A form is sent to the vendor as an email attachmet and they launch Adobe Reader (or another pdf reader) to acknowledge the form and submit it to our back-end system to save the changes.  One vendor saves the form directly from the email for later printing.  This process has worked for some time but we recently upgraded our SAP system and made some corresponding changes to the form in LiveCycle Designer.  We now see the following issue:
    Before the changes, the email attachment pdf could be saved directly from the email without opening Adobe Reader.  After saving, the pdf could be seen in Windows Explorer in preview mode and all fields would be populated. 
    Since the changes, if the pdf is saved directly from the email without opening Adobe Reader then after saving, if the pdf is viewed in Windows Explorer in preview mode, all fields (from the XML) are not populated but the form template is visible (boxes, buttons, etc.)  Also, if the vendor attempts to print the form using third-party software, the form is printed with no data but the form template is visible.  If the same pdf is opened in Adobe Reader, all data is visible.
    Also, since the changes, if an old (created before the changes) pdf is saved directly from the email, the output is visible in Windows Explorer preview as well as print output and Adobe Reader.
    Are there any suggestions on what has caused this change in the output from the form?
    Thanks for your help.
    .. Craig

    E-mail submission is client sensitive (this even occurs with HTML forms that use mailto). In Acrobat or Reader on Windows, it uses the default MAPI mail client (if one exists - one of the problems). I have no idea what the requirement is on a MAC, but probably something similar. You need to figure out how to do a web submission to resolve the problems.

  • IPad continually only receives emails WITH attachments

    I have been experiencing something really bizarre lately with my iPad (3rd generation). Every now and then, the email seems to get 'stuck' and will ONLY fetch emails from the server that have attachments. It's really quite strange. If I check the email via the provider's (Comcast's) website, I can see many new emails that have arrived, but unless they have an attachment, they will not get pulled down from the server to my iPad.
    Things I have done:
    - Completely removed my email accounts and started over
    - Verified the settings on the other clients I use to ensure that it is not set to delete messages on the server.
    I have read previous solutions that suggested the problem may be related to some kind of 'corrupt' email on the server which is preventing other messages from being retrieved. The recommended solution there was to take all of the emails that were currently on the server and 'quarantine' them by putting them in a different folder. That seemed to work for a while, but it keeps recurring.
    I don't actually think this is a problem with the iPad, as it is reproducable on my Kindle Fire, my Android tablet, and my iPod Touch, so I feel pretty sure the problem lies on the mail server. But it is only ONE account. I have approximately 7 Comcast email accounts and it is only that one particular account that is experiencing the issue. So, yeah, you may be asking yourself why am I posting this here if I'm pretty sure it's not the iPad that's the problem... well, you guys are pretty smart, and perhaps someone has run into this kind of issue before with their provider. I know that calling Comcast is absolutely useless, and they'll just tell me to use their app, but that's really frustrating and inconvenient.
    Any suggestions?

    Found what I was doing wrong.
    First, finditems retrieves items and not just emails, so I had to switch the schema to ItemSchema.  This one has a HasAttachments property on it, that when set to true will cause the filter to find only items that have one or more attachments. 
    Setting it to false finds items that have no attachments.
    SearchFilter.IsEqualTo sfEmailsWithAttachments = new SearchFilter.IsEqualTo(ItemSchema.HasAttachments, true);
    Also, found that finditem is designed to only return summary information that can then be used to decide whether to retrive the full item in a getitem command.  This was done by Microsoft to expidite searches on Exchange.  So, even though finditem
    will find only emails with attachements, the returned items may not neccesarily have things like counts for the attachments.  You would have to retrieve the whole email with getItem using the retrieved item's ID to do manipulations on any lower level
    fields.

Maybe you are looking for

  • How do I sync just a playlist to my iPhone 4s and not other songs?

    I Am trying to free up space on my iPhone 4s, I have a play list that consists of approx. 150 songs. When I sync the phone, there are over 500 songs on the phone. I have selected just the playlist in the summary, but I am unable to deselect the songs

  • Script crashing

    Hello folks, I am running a script from mail.app in the rules section. mail.app Version 3.2 (919/919.2) OSX is Leopard 10.5.2, Every time the script runs mail.app closes with an Ignore relaunch or send dialog. This script runs fine in Tiger. Here is

  • Query Build - witch cube does measures comes from?

    Hello! It is not possible to see witch cube a measure comes from in the Query Build. I have several measures with the same name but from different Cubes / Analytic Workspaces. If I change the Label, then the measure will have that name in the report

  • Creative Cloud Desktop Hangs Up and won't Uninstall

    I just installed Creative Cloud Desktop and it hangs up (Spining Gear)when I try to download Apps. I tried uninstalling, but I keep getting refused because the App is open. How do I close the Desktop App. Even better would be information about how to

  • X-y table with motor control

    Hello all, Has anyone come across a decent off the shelf x-y table that can be position controlled using labview ? It does not need to be extremely precise, I would just like to be able to move different quadrants of a circuit board into position for