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!

Search results for query: *

  • Users: aarrgghh
  • Content: Threads
  • Order by date
  1. aarrgghh

    Visual Basic capabilities/recommendations

    I am researching the capabilities of visual basic. I need to know if visual basic has any real-time timing (in milliseconds) abilities. The accuracy of the timing needs to be high and consistent. The timing ability will be used in a reaction time test. Also, how Windows OS mobile is visual...
  2. aarrgghh

    Hiding form elements

    any ideas on how to hide <form> elements with onMouseOver in NS4.72? I can get it to work with every other browser except NS4.7X. Heres wat Ive tried: function hide(){ if (document.getElementById){ document.getElementById("form").style.visibility = 'hidden';}...
  3. aarrgghh

    form select inputs cover popup menus?

    Does anyone know why my form inputs cover my drop down menus. For example, when I move the mouse over a navigation button and the popup menu appears, it is partially covered by the form inputs below it. The inputs that consistently, across browsers, cover my menus are the SELECT inputs, and...
  4. aarrgghh

    extracting data from web site

    Hey all, Does anyone know how I can search a paragraph for a particular string and delete all text that occured before that particular string? Thanks in advance!
  5. aarrgghh

    MySQL Search abilities

    Hello, Does anyone know which version of MySQL supports searchs where a user could use &quot;and&quot; and &quot;or&quot; etc... So For example, &quot;+term +term&quot; would be that same as &quot;term and term&quot; Thanks in advance.
  6. aarrgghh

    striping html tags

    Hello all, I have set up a forum. I need an easy way to strip tags that is reliable and safe. Thanks in advance!
  7. aarrgghh

    https and php

    I think I am confused...OK I know I am confused. I have been reading the posts on https and they mostly relate to connecting to another server (i.e., cc processing company). I need to make a secure login on my own server. Everything will run off of one server. Do I need some special script to...
  8. aarrgghh

    MAC Netscape 4.72

    Hey all, Can anyone help me with this code? I can't seem to get this code to work on MAC Netscape 4.72. // Keeps away the cache var n=Math.floor(Math.random()*100000); // function that is called function section(){ window.document.form1.control.value = &quot;understanding&quot...
  9. aarrgghh

    SSL Recommendations

    Hey all, I just wanted to get some input on SSL Certificate Sellers. Which do you recommend and why? Please also tell me about price/browser compatibility. Thanks in advance!
  10. aarrgghh

    locking pdf with php

    Hello all, I have created a web site that creates pdf's with a users information contained within it using php. The problem I am having is that after the pdf is created, the user can edit his or her information. This defeats the whole purpose of why I wanted to create pdf's. Any ideas about how...
  11. aarrgghh

    Data Security

    Hey all, I am looking for some advice. I have created a website that requires people to supply his or her first and last names, and social security number. What are my options for safely collecting this data via a web form without anyone being able to intercept it and read it on its way to my...
  12. aarrgghh

    dynamic sizing of popups

    Hey all, Is there a way to control the height and width of a pop-up other than explicitly stating like below? function popUp() { newWindowTrue = window.open(&quot;&quot;, &quot;&quot;, &quot;height=525,width=725,scrollbars,&quot;); newWindowTrue.focus()...
  13. aarrgghh

    multiple image submit buttons

    Hey all, I need to have multiple image submit buttons on a page, and I need to pass different values, via GET or POST, based on the button clicked. Thanks in advance
  14. aarrgghh

    print_r($_session);

    I am having problems keeping session variables. Whne I use print_r($_session) on the first page I can see my variable values, but when I go to the next page and try to access the variables using the same function, print_r($_session). I get an empty Array(). Does anyone know whats going on? Here...
  15. aarrgghh

    IM LOSING MY VARIABLES...

    ... and my marbles. I am transfering session variable from page to page, well, at least I'm trying to. I am having users go through a web site in a very structured way. That is, the site has a beginning and an end. As a result, I need to keep track of the users current location and the farthest...
  16. aarrgghh

    navagation warning

    Hey all, Does anyone know of a way to warn a user to log out before navagating away from a web site? I need this warning to pop up under two circumstances. One when the user goes to a new domain, and if the user closes the browser window. Is this possible? Thanks in advance
  17. aarrgghh

    sessions and IE

    Hey all, My understanding of sessions is that when variables are set, they are not available until the user goes to the next page or refreshes his or her browser. I find that when I send a user to another page via a text based link (i.e., <A HREF=&quot;link...&quot;>link text</a>) that the...
  18. aarrgghh

    php cookies not working??!!

    Hey all, I am having a problem with the cookies being available after they have been set. First, I set the cookie. Then I proced to another page and try to get the value of the cookie and I cant. Can you see any problems here that I may have? $firstName = $_POST['firstName']; $set =...
  19. aarrgghh

    xp pro and php

    Hey all, I am trying to run php on my xp pro pc. I have it intsalled and recieved no errors, but I can't seem to run php files. I can run html files ok. I recieve the message &quot;No input file specified&quot; ....any ideas? Thanks in advance.
  20. aarrgghh

    xp pro and php

    Hey all, I am trying to run php on my xp pro machine and I installed it with no errors on IIS 5.1. However, I get &quot;No input file specified&quot; when I try to run a simple phpinfo(); or even <?php echo &quot;helloworld&quot;; ?> does anyone have any ideas about why this might happen? Many...

Part and Inventory Search

Back
Top