Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. mamabird

    Multiple form submission...or loop?

    I have a page that lists several papers that users need to register for (through salesforce.com) There is one registration form and 3 buttons ("get doc 1", "get doc 2", "get both docs". Since this is set up through salesforce there are 2 items I cannot change: <form...
  2. mamabird

    global variable in absolute path?

    Thanks for the suggestions. progman1010, the problem with your suggestion is that the production root is different from the development path. In production my root is www.myproductionurl.com/ and in development it's www.mydevelopmenturl.com/subfolder/ The reason being is that I have the...
  3. mamabird

    global variable in absolute path?

    Hello, I am new to PHP so I'm trying to struggle through this issue. I have taken over a site in which the previous developer didn't believe using a directory structure to keep files neatly organized - 90% of the pages in the site are all in the main directory. One of my goals is to clean this...
  4. mamabird

    Outputting text with single quotes

    That's good to know. I haven't come across that yet in my tutorials. Thank you!
  5. mamabird

    Outputting text with single quotes

    Sweet, it worked! I don't have access to the .ini file so I used the cleanse function and that did the trick. I also am outputting my form in an echo statement so all of the attributes are single quoted. On that one radio I just changed it to a double quote and escaped it. I also figured out...
  6. mamabird

    Outputting text with single quotes

    I have a form, the contents of which gets emailed to someone. The form has a textarea and several radios. If the user enters "John O'Connor" in the textarea the outputted value is "John O\'Connor". One of the values in one of the radios is "Don't Know". If selected the outputted value is...
  7. mamabird

    Oracle DECODE not giving correct results in CF

    I am using CFMX and Oracle 10g. I am trying to populate a dropdown list from a database using the format "last name, first name". One of the values in the list of users is NA (there is an NA in both the first_name and last_name fields of the database). I don't want the NA record to display as...
  8. mamabird

    Using a comma in the default param of DECODE

    Thanks Dave/Mufasa/Santa. I should have troubleshooted (is that even a word?) this better. I am able to successfully run this DECODE statement in Toad, it gives me the results I am looking for. Where it's breaking is in ColdFusion. I have the code there (the exact same statement as in Toad)...
  9. mamabird

    Using a comma in the default param of DECODE

    I am using the DECODE function and my default value has a comma. When I run the query, it's cutting off everything after the comma in my default. How can I get the entire string returned? SELECT DECODE ( mycol, '1', 'One', '2', 'Two', '3', 'Three', 'This, is...
  10. mamabird

    Write child value to parent

    SWEET! That is just what I was looking for and it works great. Thanks Dan!
  11. mamabird

    Write child value to parent

    I have a parent form that opens a child form so users can pick some values. When they submit the child form the values correctly populate the parent's input fields. However, I don't want them to be fields on the parent, just text written to the page. It works when I have <input type="text">...
  12. mamabird

    dependable drop-down?

    Yes GUJUm0deL that's what I want to do. I tried messing around with it myself but only managing to mess it up and I'm not sure what I broke or didn't break. This is an intranet with about 150 users so we want to do this direction. Some of our forms have many many fields and if a user has them...
  13. mamabird

    dependable drop-down?

    GUJUm0deL, one more question about your code - if I want to display a text value but want the value passed in the form to be an ID how do I incorporate those into the three dropdowns? Thanks! mamabird
  14. mamabird

    dependable drop-down?

    GUJUm0deL, THANKYOU THANKYOU THANKYOU!! It works exactly as I wanted and is so clean! I was trying to adapt the code you listed above on Dec 11 and I just couldn't get the 2nd dropdown to work. You're FAQ is awesome! Thanks also for the fast reply! mamabird
  15. mamabird

    dependable drop-down?

    GUJUm0deL, I am currently going through this exact same issue and am struggling with it. I tried looking at your site at http://highestateliving.com/3.cfm but I get a File Not Found error so I can't see what you've done. Have you written an FAQ yet or do you have information to help out...

Part and Inventory Search

Back
Top