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 Wanet Telecoms Ltd 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. karren

    input not showing within div in netscape 4.7

    hi Dan, the style property i have applied for menu one is within the div tag: <div id="menu1" style="visibility:hidden;"> <i>If you selected "Yes", please answer the following questions:</i><br /><br /> <b>What year were you notified?</b><br /><input...
  2. karren

    input not showing within div in netscape 4.7

    hello all, i am having a problem where the input box will not show within a div tag when i am trying to view it in netscape 4.7. i am creating a show/hide function, which works fine, but it only shows the text within the div rather than the input box. anyone know why this would happen? here...
  3. karren

    disable changing text in text box

    thanks sooooo much everyone!! i need to polish up my javascript skills....you all are great, thanks again! karren
  4. karren

    disable changing text in text box

    hello, i am creating a form where i don't want the user to be able to modify the value that appears in the text box (because this value is automatically created by a calculation script i am using). i have tried several methods that disable any clicking in the textbox and disable selecting the...
  5. karren

    passing an array via querystring

    thanks for your replies everyone :) it's strange because when i pass the array through the URL, the page that prints the array prints the correct amount of values stored in the array. but instead of priniting out what those values are, it only prints out: Array Array Array (it's correct that...
  6. karren

    passing an array via querystring

    hello all, i have a variable that stores an array and i want to pass it to a new page using a querystring. any ideas on how to do that? thanks, karren
  7. karren

    page load question

    i have a question: i want to create a page where a certain message appears while the page is loading and this message changed once the page has loaded. is this possible to do? where would i start with this? thanks all! karren
  8. karren

    html appearing in email being sent from form

    thanks all, for your responses. i will try out this mailer class!
  9. karren

    html appearing in email being sent from form

    ok, i guess the essence of my question is: how do you send plain text emails without html formatting, while preserving the line breaks, so the email text doesn't appear as one huge paragraph? thanks! karren
  10. karren

    html appearing in email being sent from form

    hi everyone, i have an issue with emails being sent from a form, using the php mail() function. the code i'm using automatically inserts link breaks and converts urls to links in the email body (which is written in a textarea) that is being sent out. however, some people who receive the email...
  11. karren

    mass email problem

    i got it to work with the following code: <?php $subject = $HTTP_POST_VARS["subject"]; $subject = stripslashes($subject); $content_1 = $HTTP_POST_VARS["content_1"]; $content_1 = htmlentities($content_1, ENT_QUOTES); $content_1 = stripslashes($content_1); $content_1 = "<font...
  12. karren

    mass email problem

    thanks for all your responses, they're so helpful. i'm gonna test out the function tonight and post the code on here if it works! thanks again, karren
  13. karren

    mass email problem

    thanks for the very fast responses!! i understand a bit better how it all works. do you know whether there is some type of php function that could pause the execution time of my script and then continue on after a few seconds? i was reading something about a function called sleep(), but i...
  14. karren

    mass email problem

    hello everyone, i have created a mailing list tool that sends out mass emails to email addresses that are pulled out from a mysql database. the problem is that there are over 1000 email addresses that it loops through and the script seems to time out after sending to the first 200 users or so...
  15. karren

    automatically print

    hey all, i was wondering if it's possible to bypass the printer dialogue screen and automatically print an html page using the window.print() function (or any other javascript functions)?
  16. karren

    swap plus/minus images in collapsable menu

    cool, thanks Westbury!! that totally helped me out, it works now :) and i understand now why my code wasn't working...thanks a lot!!! karren
  17. karren

    swap plus/minus images in collapsable menu

    hello all, i am trying to make a very simple show/hide menu where some content is shown or hidden by clicking. i've got the show/hide piece to work, but i cannot get the image to swap from plus to minus when the user clicks on the plus image to expand the menu. here is my javascript code...
  18. karren

    show/hide checkbox question

    oh WAIT!!! THANK YOU DAVID!! your code worked :) i just had a slight syntax error. i'm an idiot!!! THANKS!!!!
  19. karren

    show/hide checkbox question

    hi dave, thanks so much for your reply, but both your suggestions didn't seem to work. the div with the textbox i wanna show when the user clicks on the "Left practice" checkbox still does not appear. i do not get any javascript errors but the div remains hidden. i'm not sure what i am doing...
  20. karren

    show/hide checkbox question

    hi there, i am trying to get a checkbox to show an input box when it is clicked on but i can't get it to work. here is the code i have so far: <script type="text/javascript"> function showhide2(thismenu) { if(document.forms[0].ChangeInPracticeOther.value=='Left practice') {...

Part and Inventory Search

Back
Top