PHP Form Emailing Fields But No Data

Hello,
I am running into a little problem with my PHP form script.  I am able to email my form and receive a message, however the message has no data, except for where I have check boxes.  Can anyone help me solve this dilemma?  Some of the code has been remove intentionally.
I will post my code:
<?php
/* Email Variables */
$emailSubject = ' Registration Form';
$webMaster = 'de';
/* Data Variables */
$registrationname = $_POST['registrationname'];
$registrationphone = $_POST['registrationphone'];
$registrationemail = $_POST['registrationemail'];
$registrationdistrict = $_POST['registrationdistrict'];
$registrationposition = $_POST['registrationposition'];
$onecredit = $_POST['onecredit'];
$twocredit = $_POST['twocredit'];
$threecredit = $_POST['threecredit'];
$body = <<<EOD
<br><hr><br>
Name of Register: $registrationname <br>
Day Time Phone Number: $registrationphone <br>
Email Address of Register: $registrationemail <br>
Name of School District: $registrationdistrict <br>
Position/Job Title: $registrationposition <br>
Register for 1 Credit: Learning to Use the easyCBM Assessment System: $onecredit <br>
Register for 2 Credits: In-Depth Knowledge of the easyCBM Assessment System: $twocredit <br>
Register for 3 Credits: Enroll in Both of the Above Options: $threecredit <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>sent message</title>
<meta http-equiv="refresh" content="6;URL=http://.html">
<style type="text/css">
<!--
body {
background-color: #D9D3A9;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 20px;
font-style: normal;
line-height: normal;
font-weight: normal;
color: #000000;
text-decoration: none;
padding-top: 200px;
margin-left: 200px;
width: 800px;
-->
</style>
</head>
<div align="center">Thank you! Your request has been sent.
You will return to the page in a few moments.</div>
</div>
</body>
</html>
EOD;
echo "$theResults";
?>

1) I would bring the line <cfoutput query="CheckUser"> lower down in the code, for example, just before the first table tag.
2)These are probably mistakes
<<table border="0" align="center" cellpadding="0" cellspacing="0">
<input type="hidden" name="LogDate" value="Now()">
I think they should be
<table border="0" align="center" cellpadding="0" cellspacing="0">
<input type="hidden" name="LogDate" value="#Now()#">
3) You could revise the action page to:
<cfif isDefined("form.logDate")>
<cfinsert datasource="manna_premier" formfields="LogDate,TerritoryManager,Status,DSRName,ServiceName" tablename="TMStatusLog">
<cflocation url="mp_order_form.cfm">
</cfif>
The table TMStatusLog must of course have columns LogDate, TerritoryManager, Status, DSRName and ServiceName.

Similar Messages

  • Configurable PHP form emailer

    I'm looking suggestions for a drop-in PHP form emailer
    script... something that I can either configure by using templates
    that are unique to each form or some other method of per-form
    configurability.
    I'm using soupermail.pl now, but would like to move away from
    it because it has issues with certain users who use AOL and have
    Norton security products (they will receive errors when submitting
    the form).
    I do not want to write a generic form mailer from scratch, as
    I am not comfortable with ensuring that it is safe from spammers...
    I would like to find something that I can use from several forms on
    my site. I do not need to write anything to a database, just be
    able to email to variable destination email accounts. I do not want
    to be able to upload or send attachments.
    Thanks for any suggestions.

    Hi there - read my article titled, "Validating your forms
    with PHP" - here:
    http://sourtea.com/articles.php
    At the end of the article, I provide the full, free code to
    do what you're
    looking for.
    HTH, take care.
    Shane H
    [email protected]
    http://www.avenuedesigners.com
    =============================================
    Web Dev Articles, Photography, and more:
    http://sourtea.com
    =============================================
    Proud GAWDS Member
    http://www.gawds.org/showmember.php?memberid=1495
    Delivering accessible websites to all ...
    =============================================
    "JillTW" <[email protected]> wrote in
    message
    news:eeebap$q71$[email protected]..
    > I'm looking suggestions for a drop-in PHP form emailer
    script... something
    > that
    > I can either configure by using templates that are
    unique to each form or
    > some
    > other method of per-form configurability.
    >
    > I'm using soupermail.pl now, but would like to move away
    from it because
    > it
    > has issues with certain users who use AOL and have
    Norton security
    > products
    > (they will receive errors when submitting the form).
    >
    > I do not want to write a generic form mailer from
    scratch, as I am not
    > comfortable with ensuring that it is safe from
    spammers... I would like to
    > find
    > something that I can use from several forms on my site.
    I do not need to
    > write
    > anything to a database, just be able to email to
    variable destination
    > email
    > accounts. I do not want to be able to upload or send
    attachments.
    >
    > Thanks for any suggestions.
    >

  • I have created a PDF form with field but for some reason I cant type in them

    I have created a PDF form with field but for some reason I cant type in them

    May be that the text fields are read-only.

  • PHP forms & required fields

    i'm creating an inquiry form for a client hosting w/godaddy.
    Site is in DW using godaddy's php form mail script. script
    works fine for sending formmail.
    Is it possible to validate form fields in php? the customer
    wants to have the first name, email address, etc. being a required
    field or the form will not submit. godaddy support is clueless,
    they e-mailed a kb article on changing the form e-mail address as a
    solution.
    can anyone provide insight? thanx in advance!

    Sure it is. It's even possible to do it in javascript before
    the form gets
    submitted.
    Which DW are you using?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "donna_d" <[email protected]> wrote in
    message
    news:fn8468$r4n$[email protected]..
    > i'm creating an inquiry form for a client hosting
    w/godaddy.
    > Site is in DW using godaddy's php form mail script.
    script works fine for
    > sending formmail.
    >
    > Is it possible to validate form fields in php? the
    customer wants to have
    > the
    > first name, email address, etc. being a required field
    or the form will
    > not
    > submit. godaddy support is clueless, they e-mailed a kb
    article on
    > changing
    > the form e-mail address as a solution.
    >
    > can anyone provide insight? thanx in advance!
    >

  • Creating a date field that autogenerates when form is opened but the date is fixed upon signing.

    Hi,
    I have been creating a series of PDF forms on Adobe XI Pro that are designed to be filled in using Adobe Reader (hence are saved as Adobe Reader Extended). Once the form is complete there are signature fields that the user digitally signs which then deactivates specific form fields from further editing. Alongside the signature field I have got a date field which, at the moment, is using JavaScript to auto-generate the current date upon opening. However, the issue I am having is that I want this date field to be fixed when the form is signed, rather than updating again when the form is next opened. Is this possible?
    The document JavaScript that I am currently using to generate the date is as follows:
    this.getField("PR_Date1").value = util.printd("dd/mmm/yyyy", new Date());
    But obviously this is independent of the date field.
    I am very new to Adobe in general so I don't have much of an idea about how to go about doing this. Could somebody please help me to do this if it is possible?
    Thank you
    KC

    Hélène-
    Thanks for the detail regarding validation script, but I still am having a problem with it.
    I have tried what you told me (remove reset the value) the popup no longer appears when the form is opened. But the validation does not seen to be working. It is not working either in the validate or exit event. This is what I have now on that text field.
    ----- form1.#subform[0].Y::exit - (JavaScript, client) ---------------------------------------------
    //Verify year is current or year+1
    var today = new Date();
    var year = today.getFullYear();
    if (this.rawValue == year || this.rawValue == year+1)
    app.alert("Year is invalid.\n\nOnly current or next year is valid.");
    ----- form1.#subform[0].Y::validate - (JavaScript, client) -----------------------------------------
    //Final verification
    ScriptObject.ValidateField(event.target, this);
    This final verification script I have taken from the samples on the
    LiveCycle Developer Center (Validating field content in a form hosted in Adobe Acrobat).
    The alert only displays when 2007 or 2008 is entered. I am really confused now. I thought I had a handle on this with your explanation.
    I do not know where to go now. The Object Pallet is setup as:
    Field Tab
    Allow Plain Text Only and Limit Length are checked with a Max Chars: 4. Edit Pattern: 99999
    Value Tab
    Type: User Entered - Required
    Validation Pattern: 9999
    Validation Script Message is checked - in Message box Invalid Year.
    Binding Tab
    Default Binding: Normal
    Data Format: Plain Text
    I am hoping that you can explain what I have wrong.
    Thanks so much,
    Confused Nancy

  • Re: PHP Form - Required Fields

    Change this section of code:
    if(!count($Errors)) {
    $SendTo = "[email protected]";
    $Subject = "New Contact Form";
    $FromString = "From: ".$_POST['eaddress']."\r\n";
    $Indhold = "Dave, Someone filled out the contact form on the
    web site.
    Here is the information:\r\n\r\n";
    $Indhold .= "name: ".$_POST['name']."\r\n";
    $Indhold .= "e-mail: ".$_POST['eaddress']."\r\n";
    $Indhold .= "phone: ".$_POST['telefon_nr']."\r\n";
    $Indhold .= "subject: ".$_POST['subject']."\r\n\r\n";
    $Indhold .=
    "comment:\r\n".preg_replace("(\r\n|\r|\n)","\r\n",$_POST['comment'])."\r\n";
    $MailSuccess = mail($SendTo,$Subject,$Indhold,$FromString);
    header("Location: thankyou2.php");
    exit;***************************
    To this:
    if(!count($Errors)) {
    $SendTo = "[email protected]";
    $Subject = "New Contact Form";
    $FromString = "From: ".$_POST['eaddress']."\r\n";
    $Indhold = "Dave, Someone filled out the contact form on the
    web site.
    Here is the information:\r\n\r\n";
    $Indhold .= "name: ".$_POST['name']."\r\n";
    $Indhold .= "e-mail: ".$_POST['eaddress']."\r\n";
    $Indhold .= "phone: ".$_POST['telefon_nr']."\r\n";
    $Indhold .= "subject: ".$_POST['subject']."\r\n\r\n";
    $Indhold .=
    "comment:\r\n".preg_replace("(\r\n|\r|\n)","\r\n",$_POST['comment'])."\r\n";
    $name = [submitted name from form field];
    $MailSuccess = mail($SendTo,$Subject,$Indhold,$FromString);
    header('Location:thankyoupage.php?name='.$_POST['name']);
    exit;***************************
    That part of the code that I pasted above it creating those
    strings ONLY IF
    there are no errors, so you can just add in seb's code there.
    HTH, take care.
    Shane H
    [email protected]
    http://www.avenuedesigners.com
    =============================================
    Proud GAWDS Member
    http://www.gawds.org/showmember.php?memberid=1495
    Delivering accessible websites to all ...
    =============================================

    Ah - see now I put the formatting how I'd *like* the user to
    input it.
    Because I work with anyone in any loaction, naturally the
    format would be
    different.
    For my contact.php page - the "phone" field isn't a
    requirement, but for my
    quote.php it is a requirement and I just validate it just to
    make sure there
    is SOMETHING in the text field. Not the best way, but I trust
    a true future
    client will provide their phone number.
    Take care Dave, glad I could be of help.
    Shane H
    [email protected]
    http://www.avenuedesigners.com
    =============================================
    Proud GAWDS Member
    http://www.gawds.org/showmember.php?memberid=1495
    Delivering accessible websites to all ...
    =============================================
    "Dave Anderson" <[email protected]> wrote in
    message
    news:e68vpc$da9$[email protected]..
    > Shane H wrote:
    >> Dave -
    >>
    >> I've tweaked your code and got it working for you.
    Here are the pages in
    >> text:
    >>
    >> Source code (contact.php):
    >>
    http://www.avenuedesigners.com/tests/dave_source.html
    >>
    >> Source code (thankyoupage.php):
    >>
    http://www.avenuedesigners.com/tests/dave_thankyou_source.html
    >>
    >> HTH, take care.
    >>
    >
    >
    > Shane,
    >
    > Many thanks! I took a look at what you did to compare to
    what I had. I
    > couldn't tell what was different!? Anyhow, it works
    GREAT.
    >
    > I noticed on your site that you have a specific format
    for the phone
    > number. Would it look something like this?
    >
    > if(!trim($_POST['phone'])) $Errors[] = "Phone";
    >
    > change to this:
    >
    >
    if(!preg_match("/[0-9]{2,4}+-[0-9]{2,4}+-[0-9]{3,5}/",$_POST['telefon_nr']))
    > $Errors[] = "The phone number is typed wrong. (check the
    format)";
    >
    >
    > I tried it and it doesn't seem to care *what* I put in
    (alphanumeric). I'm
    > sure my code is bad, but I don't know what.
    >
    > Thanks for your help Shane!
    >
    > Dave

  • PHP Form - Required Fields

    I've got my form working great thanks to Joe and David (and
    others) in
    this group.
    I want to take it a step further by requiring three fields to
    be filled
    out. So I found this code to use in my thankyou2.php page:
    if (!($frmName && $frmemail && $frmphone))
    {echo "You must complete the
    form to send it"; } else {
    I *thought* that if I used it prior to the code that
    processes the rest
    of the page, and sends the admin e-mail, all would be swell.
    However,
    all I get is a blank page.
    I'm almost thinking now that maybe the code needs to go on my
    contact.php page rather than the thankyou.php page? That way,
    the error
    message could appear right on the contact page itself?
    I'm fairly new to this PHP stuff, so go easy
    www.paramount-const.com/contact.txt
    www.paramount-const.com/thankyou2.txt
    Dave

    sorry:
    header('Location:thankyoupage.php'.?name=$_POST['name']);
    should read:
    header('Location:thankyoupage.php?name='.$_POST['name']);
    i misplaced the dot and quote...
    (_seb_) wrote:
    > Dave Anderson wrote:
    >
    >> Shane H wrote:
    >>
    >>>
    http://www.geekministry.com/blog_article.php?id=40
    >>>
    >>> Kim provides an easy way to validate the form
    and also a field for
    >>> stopping spam (I use it on my website, works
    very well!) - all in PHP.
    >>>
    >>
    >>
    >> Shane, good catch! Here method is so simple...
    >>
    >> I installed it, but have a few PHP questions.
    >>
    >> Source:
    >> www.paramount-const.com/html/contact2.txt
    >> www.paramount-const.com/html/thankyou2.txt
    >>
    >> Live form:
    >>
    http://www.paramount-const.com/html/contact.php
    >>
    >> 1) Biggest issue:
    >> If the form is incorrectly filled out, the error
    messages are
    >> displayed at the top of the page. I'm not clever
    enough to figure out
    >> how to display the error message in the fieldset. I
    tried putting the
    >> php block of code in the fieldset, but it doesn't
    seem to matter.
    >> Maybe I can position it with CSS? or is there a
    different way?
    >>
    >> 2) Nice to do but not imperative:
    >> If the form is filled out properly, it redirects to
    my thankyou page.
    >> I would like to personalize the thank you if
    possible. I know there's
    >> a way to customize that page with a name variable,
    but I can't get it
    >> to work. I think what's happening is that I need to
    somehow pass a
    >> variable from the contact page to the thankyou page.
    I have this at
    >> the moment in my thankyou page:
    >>
    >> <?php echo 'Thank you,
    '.htmlentities($_POST['name']).'.'; ?>
    >>
    >> Thanks.
    >>
    >> Dave
    >
    >
    > when you click on the submit button of the form,
    basically the page
    > reloads, this time with all the info from the form, as
    $_POST info.
    > If all this info is correct, you redirect to the thank
    you page.
    > You need to pass some of the info to the thank you page
    (for example to
    > echo the name of the person who just applied).
    > SO, when the form is published and the page reloads, you
    need to store
    > this info, and pass it to the thankyou page.
    >
    > here's we go, scematically:
    >
    > <?php
    > if [form submitted]...
    > $name = [submitted name from form field];
    > [if everything in the form is correct and we redirect to
    thankyou
    > page:]
    >
    header('Location:thankyoupage.php'.?name=$_POST['name']);
    > }
    > ?>
    >
    > Then in thankyou page,
    >
    > $name = $_GET['name'];
    > echo $name;
    >
    >
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

  • Javascript works for text field, but not date ??

    Hi,
    I'm trying to calculate work-day hours based on a start and end date range, as the dates are changed (using onChange event). I tend to do this kind of thing in chunks, so I started with a very basic script that should simply update 1 item with the value of another, when it is changed.
    function change(){
    html_GetElement('P51_UPDATE_TO').value = html_GetElement('P51_UPDATE_FROM').value;
    As log as P51_UPDATE_FROM is a text field, P51_UPDATE_TO updates fine. If P51_UPDATE_FROM is a date field however (as it should be), P51_UPDATE_TO doesn't udpate at all. Any ideas why this might not work with a date field update?
    Many thanks,
    albertmi

    After playing around a bit more, I notice that manually typing in a new date will trigger the onChange event, but I can't get it to work when using the date picker...is there a way around this?

  • 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

  • Added Field, but no data displayed

    Hello Experts,
    I have added CITY field successfully in Relationship Assignment Block by creating a new Attribute using WIZARD.
    Component : BP_DATA
    View: AccountRelationshipsOV
    Context Node: BUILRELATIONSHIP
    Attribute: City
    It has generated
    GET_CITY
    SET_CITY
    GET_M_CITY
    GET_I_CITY methods successfully.
    I can see the added field in my WEB UI i.e. CITY.
    But the problem is when a new Relationship is created or selected by clicking on 'New' on Relationship Assignment Block, it is displaying only NAME but not CITY.
    While creating the Attribute thorugh wizard, in Attribute Definition
    I have given
    Attrib.name        : CITY                ( can this be city or should be ZCITY)
    BOL Entity         : BuilAddress
    BOLAttribute      :  CITY.
    What else have to be done to get the data for this particular field.
    your suggestions are really appreciated.
    Thanks in Advance.
    Mythili S

    You can add new field in the view as value node(data dictonary) or context node(BOL).
    Value node field - in this case if you want to populate the values in the field, you can write code withing GET_CITY. See some sample GET methods
    Context note field - since this will be part of BOL structure you do not need to do anything for populating the field. Standard SAP fetched data as whole BOL structure so it should take care.
    Hi Anand,
    I think this is Context Node field only,
    I have created a adde these two fields by right clicking on ATTRIBUTE.
    The coding is done in all the methods.
    GET_CITY, SET_CITY...etc.
    Where could be the mistake?
    Thanks & Regards
    Mythili

  • Expanding text field to hold data

    This sounds like a pretty simple problem, but... I have created a form using Designer that consists for 4 text boxes that span the width of the page. We are using a middleware product, LogiXML, to populate the form. We have successfully accomplished getting the data to appear in the text fields, but the data is being cut of because of the size of the boxes. I have selected the check box to allow the box to expand and to allow mutiple lines. This doesn't seem to have any effect. Am I missing something here?
    Thanks.

    The only field type that'll let you have multiple lines of text is a text edit. With that object, you can check the
    Allow multiple lines property on the Object palette's Field tab and check the
    Expand Height (in your case since the text fields are side-by-side) property on the Layout palette.
    The combination of these two properties should get you text fields which display their content in total visibility.
    If that still doesn't work, then it's possible you haven't saved your form as a
    Dynamic PDF form (or, if you've saved your form as XDP, that you aren't previewing it as a Dynamic PDF form).
    If you think your problem is the preview type (i.e. you're not previewing as a dynamic PDF), the following entry on my blog should help you out:
    Previewing as Dynamic PDF.
    Stefan
    Adobe Systems
    You can set the default preview type (for unsaved files) in the "Tools | Options" menu on the
    page and you can set the preview type for saved files in the "File | Form Properties" menu's
    Defaults page.

  • Sending the adobe form to SAP inbox with data (on submit action)

    Hi,
    I am fectching the data from the database table in WDDOINIT method and displaying it on the form. Now my requirement is that, on the action SUBMIT, I have to send this Form to SAP user inbox.
    I wrote a code to send the form as pdf attachment by giving the form name.. but the data are not passed. only the form goes to the sap inbox.
    My question is,  how to send the form as pdf attachment with the data that are fetched...?

    Hi,
    create the parameter FP_FORMOUTPUT as IMPORT parameter structure FPFORMOUTPUT and t_att_content_hex parameter is as XSTRING.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          BUFFER                = FP_FORMOUTPUT-pdf
    *   APPEND_TO_TABLE       = ' '
    * IMPORTING
    *   OUTPUT_LENGTH         =
        TABLES
          BINARY_TAB            = t_att_content_hex
    For sending code as PDF attachment to SAP Inbox
    CLASS cl_bcs DEFINITION LOAD.
      DATA:
      lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
      lo_send_request = cl_bcs=>create_persistent( ).
    * Message body and subject
      DATA:
      lt_message_body TYPE bcsy_text VALUE IS INITIAL,
      lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
      APPEND 'Dear,' TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Please fill the attached form and send it back to us.'
      TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Thank You,' TO lt_message_body.
      lo_document = cl_document_bcs=>create_document(
      i_type = 'RAW'
      i_text = lt_message_body
      i_subject = 'Personnel Information Form' ).
      DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
      TRY.
          lo_document->add_attachment(
          EXPORTING
          i_attachment_type = 'PDF'
          i_attachment_subject = 'Personnel Information Form'
    * I_ATTACHMENT_SIZE =
    * I_ATTACHMENT_LANGUAGE = SPACE
    * I_ATT_CONTENT_TEXT =
    * I_ATTACHMENT_HEADER =
          i_att_content_hex = t_att_content_hex ).
        CATCH cx_document_bcs INTO lx_document_bcs.
      ENDTRY.
    * Add attachment
    * Pass the document to send request
      lo_send_request->set_document( lo_document ).
    * Create sender
      DATA:
      lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
      l_send type ADR6-SMTP_ADDR value 'provide Email id here'.
      lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
    * Set sender
      lo_send_request->set_sender(
      EXPORTING
      i_sender = lo_sender ).
    * Create recipient
      DATA:
      lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
      lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
    * Set recipient
      lo_send_request->add_recipient(
      EXPORTING
      i_recipient = lo_recipient
      i_express = 'X' ).
    *  lo_send_request->add_recipient(
    *  EXPORTING
    *  i_recipient = lo_recipient
    *  i_express = 'X' ).
    * Send email
      DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
      lo_send_request->send(
      EXPORTING
      i_with_error_screen = 'X'
      RECEIVING
      result = lv_sent_to_all ).
    Thanks.

  • Backup Assistant - Only Business email field syncs with device?

    I'm using Backup Assistant to backup my contacts. My device is a Blackberry Curve 8330. The problem is the only email field in the Backup Assistant on the web that syncs with my device is the "Business" email field. If I have a contact with more than one email address, for instance personal and business, only their business email address will sync to my Blackberry. I have a lot of contacts with more that one email, so being limited to backing up just one email is rather frustrating. Also, I have a lot of contacts with just one email and it is a personal email, but if I want it to sync at all I have to make it a Business email on the web Backup Assistant page.
    This appears to just be a bug, with no known fixes that I've been able to find. Maybe someone here can shed some light on the issue.
    Thank you,
    Jim

    Someone from Verizon called my phone and left a voicemail. They explained the situation. It isn't an issue or bug, it's more that the backup assistant was built for more basic phones. Plus my blackberry supports multiple email fields, but they are just email fields, not labeled "Business", "Personal", etc. I appreciate the call and explanation. Thank you.
    Jim

  • Php form not including a field in the email sent to me

    I have tried to add a phone field to an existing form on my site, I just duplicated the existing email field and changed to say phone instead. The form works fine except that the  email that comes through to me has all entered data from the form except for the phone field. Help would be great as I am a bit of a newbie.
    Here is the mail.php:
    <?php
        $name = $_REQUEST['name'] ;
        $email = $_REQUEST['email'] ;
        $phone = $_REQUEST['phone'] ;
        $comments = $_REQUEST['comments'] ;
        $message =
            Name: $name\n
            Email: $email\n
            Phone: $phone\n   
            Comments: $comments
        mail( "removedforprivacy", "Email from my website, sent by $name",
         $message, "From: $email"  );
    ?>
    Here is the form HTML:
    <form method="post">
                            <fieldset>
                                <ol>
                                    <li>
                                        <label for="name" id="name_label">Name</label>
                                        <input id="name" type="" value="Your Name" name="name" class="text-input" />
                                        <label class="error" for="name" id="name_error">This field is required.</label>
                                    </li>
                                    <li>
                                        <label for="email" id="email_label">Email</label>
                                        <input id="email" type="" value="Your Email" name="email" class="text-input" />
                                        <label class="error" for="email" id="email_error">This field is required.</label>
                                    </li>
        <li>
                                        <label for="phone" id="phone_label">Phone</label>
                                        <input id="phone" type="" value="Your Phone" name="phone" class="text-input" />
                                        <label class="error" for="name" id="phone_error">This field is required.</label>
                                    </li>                           
                                    <li>
                                        <label for="comments" id="comments_label">Boston Brewery Booking Requested Date</label>
                                        <textarea id="comments" type="" name="comments" class="text-input">Required Date</textarea>
                                        <label class="error" for="comments" id="comments_error">This field is required.</label>
                                    </li>
                                    <li>
                                        <button type="submit" name="submit" class="send" id="submit_btn" value="Send">Submit</button>
                                    </li>
                                </ol>
                            </fieldset>
                        </form>

    Your form and php works ok for me. I can't see a reason for it not to get the phone details.
    What happens if you move the phone variable to the top of the stack (not that it should make any difference)
    $phone = $_REQUEST['phone'] ;
    $name = $_REQUEST['name'] ;
    $email = $_REQUEST['email'] ;
    Phone: $phone\n
    Name: $name\n
    Email: $email\n

  • Online php form (inserts) in pdf form and send via email

    So first hello all.
    There are 4 PDF Forms amd 4 php forms on a website.
    The user should be able to fill out the php form, click on send and the inserts from the user should be stored in the pdf form and send to an email adress.
    I know that there are 3rd party tools, the convert it to a image, draw the inserts and convert it back.
    But i want to know, how to do it with acrobat itself.
    Is there any way to put varaibles in the pdf where php can set (fill)
    If this is impossible:
    I have heard, that there is a server version from acrobat who can manage this.
    The information about this is rarly like i dont understand how much the costs are.
    First : price x (for the server software itself)   
    Second: price y (for every processed document)
    Many thanks in advance
    IT Technik Schiedt

    You cannot use Acrobat on a server in that manner. Acrobat is licensed for one user one system at a time.
    You can create and FDF file with the form field data and use that data to fill-in a PDF. You needd to create a unique PDF that could be added to an email and then deleted. You could also accumulate the data in a database.

Maybe you are looking for