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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dunskii

  1. dunskii

    keep getting error emailing form

    Howdy, It's been a few years since i last used php, anyways.... I have a one page site with a form that is emailed to my client... When I submit the form I keep getting the error message that I put in the code... And was wondering what the error could be... I dont think it is the code as I...
  2. dunskii

    having to login every page

    Thanks for your help mike....i thought with the cflogin tag included i9n the application page it did the same operation as if there was a security cfm page, if this is fause will the security.cfm be processed before or after the application.cfm thanks again AD
  3. dunskii

    having to login every page

    Hello all, I have added login for some admin pages, I am having to login for every page when trying to add a product instead of remembering that i am logged in heres the code that is included in the application.cfm <cflogin> <cfif CGI.QUERY_STRING IS ""> <cfset FormAction =...
  4. dunskii

    Bombarding a (my) website with traffic

    you could try and ping the server, i know ping -t will continue to hit the desired ip address but there are other extensions which will allow you to do multiple pings with multiple time intervals and bit sizes. its been ages since i've done it so i may be getting confused. though this may help...
  5. dunskii

    how to convert a document to PDF on the fly?

    i passed by this the other day, might help http://tutorial135.easycfm.com/
  6. dunskii

    query sees form entry but still get error

    thanks webmigit, i knew it was going to be something simple, jst could't see it
  7. dunskii

    query sees form entry but still get error

    hello again.... I have aquery which recieves data from a form...it retrieves all the required data including the id but i still get an error.. i think its a formatting error but my brain has decided to stop working cheers heres the error Error Executing Database Query...
  8. dunskii

    color picker pop up not working

    hello, I have a color picker pop up to enable admin to change the color of text etc...i am using an example from a tutorial, the demo works find but when i incorporate it into my site it stops working... any ways the popup works fine and colors are shown, though when you select a color, the...
  9. dunskii

    2 dynamic linked drop down menus error

    i tried that and got the same error... I'm considering using the twoselect custom tag though it would be nice to understand how it works instead of just using it ahhh the joys, thanks again for your help AD
  10. dunskii

    Get error with linked drop down and textbox

    thanks for help bombboy, i ended up changing <cfif isDefined("FORM.other_sub_cat")> <cfoutput query="qGetSubCatID">#Sub_Cat_ID#</cfoutput> <cfelse>#FORM.sub_category# </cfif> to <cfif FORM.sub_category is "other"> '#form.other_sub_cat#' <cfelse> '#FORM.sub_category#' </cfif> and seems to work
  11. dunskii

    Get error with linked drop down and textbox

    <form action="Collect_details.cfm" method="post"> <tr><Td> <table><Tr> <td>Select Region</td> <td><select name="Market"> <option value="no" selected>Select Region</option> <option value="1">Test345</option>...
  12. dunskii

    Get error with linked drop down and textbox

    heres the form...thanks for your help <form action="Collect_details.cfm" method="post"> <tr><Td> <table><Tr> <td>Select Region</td> <td><select name="Market"> <option value="no" selected>Select Region</option> <cfoutput query="qGetMarket">...
  13. dunskii

    Get error with linked drop down and textbox

    Hi again, On my form the user is be able to select a category from a drop down menu....if it is not there the user can select the option "Other..", then enter a new category in the text box... The new category is added to the db and everything works hunky dory, but if the user selects a...
  14. dunskii

    2 dynamic linked drop down menus error

    Ah Hah.... fixed the typo now I get this.... I don't even know what it is talking about Element QGETZONE is undefined in a Java object of type class [Ljava.lang.String; referenced as The error occurred in : line 1 -1 : Unable to display error's location in a CFML template. now i wish i...
  15. dunskii

    2 dynamic linked drop down menus error

    Hello all, I am in the process of creating 2 drop down menus. The first displays the main categories once select the second will show the corresponding sub categories. I was reading http://www.tek-tips.com/viewthread.cfm?qid=684114 which was a great help, though I now get an error --> Element...

Part and Inventory Search

Back
Top