User Profile
Collapse
-
andersond replied to How can I use a data field from a variety of data record to populate a drop-down box?in JavascriptMy question is "How can I use javascript to populate a drop-down menu that would be used to select which producer is to get credit for a given sale?" Some agencies may have only one producer while others may have 40. -
andersond replied to How can I use a data field from a variety of data record to populate a drop-down box?in JavascriptI can definitely get the data out of the files client side or server side. Are you saying that if all the Producers are in the same record that I could use those fields to populate the drop-down?Leave a comment:
-
andersond replied to How can I use a data field from a variety of data record to populate a drop-down box?in JavascriptYes; but, all the data for the drop-down box will come from the Producer field in the users file.Leave a comment:
-
andersond started a topic How can I use a data field from a variety of data record to populate a drop-down box?in JavascriptHow can I use a data field from a variety of data record to populate a drop-down box?
I have a web application that allows retail insurance agents to get quotes 24/7. There is a data file for quotes, a data file for vehicles, a data file for drivers and a data file for agents/producers. At any give retail insurance agency (agent) there my be a variety of people selling insurance (producers). There is a separate record for each producer. All producers in that agency have the same code in the agent field but a different code in... -
Thank you for your help and your patience. Using your suggestion (print_r) I figured out the problem. Without your help I would have pulled out my hair.Leave a comment:
-
Here is my code:
...Code:<?php print_r($_REQUEST['underwriter']); //Dida Taylor print_r($_REQUEST['ProducerEmail']); //[email protected] print_r($_REQUEST['underwriterEmail']); //[email protected] print_r($_REQUEST['monthlyPremium']); //$125.00 print_r($_REQUEST['nonOccAccPremium']); //5.00 print_r($_REQUEST['associationFee']); //5.00 print_r($_REQUEST['totalMonthlyAmount']);
Leave a comment:
-
I am very new to PHP so I have no idea how to do what you are asking.Leave a comment:
-
Yes. I do realize that the fields from the database have been sent in an associative array. And, I have no problem displaying field values that do not start with a digit or a "$". Here is the entire file;
...Code:$fromname = $_REQUEST['underwriter']; $underwriter = $_REQUEST['underwriter']; $underwriter1email = $_REQUEST['underwriterEmail']; $agent = $_REQUEST['Agent']; $producer = $_REQUEST['Producer'];
Leave a comment:
-
The field I am interested in is called "totalMonthlyAm ount," which contains the value "$131.00."
...Code:$paymentamount = $_REQUEST['totalMonthlyAmount']; $subject = "RE: $insured - submission received:"; $body = "United Brokers has received data from the Occupational Accident application you submitted on <b><u>$insured</u></b> asking
Leave a comment:
-
How can I get a variable containing digits to display?
I am haviing a problem getting fields from a datatable to display if they contain digits, like 5.00 or $25.00. My php page will display any other variables without any problems. How can I get these fields that contain digits to display? -
-
...and I tried it with and without the "javascript " and with and without the "document"Leave a comment:
-
In other words, using the url above if I am writing the website that resides at "https://www.yatayatayat a.com" and I enter "location.searc h" for the value of an input of type "text" it will resolve to "?codenumber=22 41w"? I really don't think you're addressing the question I am asking. I want to know how to capture "2241w" as the value of a variable called "codenumber " in a web page that...Leave a comment:
-
how can I capture data from a url?
If I use a URL to open a webbrowser and go to a website how can I capture the data I have included in the URL?
Example:
What html or javascript code can I use to capture the "codenumber=224 1w?Code:https://www.yatayatayata.com?codenumber=2241w
-
also do not workCode:document.getElementById('checkboxPowerUnit').checked=true; document.getElementById('checkboxPowerUnit').value="YES";Leave a comment:
-
-
How do I indicate that a checkbox should be checked?
I have a form named "FrontPage_Form 2" and a checkbox named "checkboxPowerU nit"; and, I want to programmaticall y change whether or not it is checked by default based on a selection made in a selection box. I have tried:
...Code:document.FrontPage_Form2.checkboxPowerUnit.checked=true; document.all.checkboxPowerUnit.checked=true; document.form[0].checkboxPowerUnit.checked=true; document.form[0].checkboxPowerUnit[0].checked=true;
-
What is iframe? I am adding this sentence because my reply was too short to post.Leave a comment:
-
input type=file
I need to allow users to upload files that support an online application. I am using input type=file to gather the path on the user's computers. How can I upload the file they specify after I have verified the file type? And, how can I indicate the destination folder on my server?
No activity results to display
Show More
Leave a comment: