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 Mike Lewis 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: cathl
  • Order by date
  1. cathl

    Can't access HTTP_POST_VARS

    I found that the answer was that there is an issue with IIS not always passing the php session ID correctly and the solution is to include the session ID as a hidden variable in every form with a post method. I tried this and it works. I only found the answer a couple of months ago, it seems not...
  2. cathl

    Using onload in body doesn't seem to work in Netscape

    Will try that one and let you know - thanks!
  3. cathl

    Using onload in body doesn't seem to work in Netscape

    I already checked this, I know it works in Netscape because I added onClick=someFunction() to an image and on clicking the image the layer moves in both browsers.
  4. cathl

    Using onload in body doesn't seem to work in Netscape

    Hi, I am trying to move a layer when a page is loaded using onLoad=someFunction(). I need to put the function in the body of the document not the head, and this works fine in IE but not in Netscape 4. Does anyone know why? Thanks.
  5. cathl

    Changing folder sharing across peer to peer network

    Hi, can anyone tell me if it is possible to change the sharing on a folder across a peer to peer Windows network, ie change the sharing from 'Not Shared' to 'Shared' without actually logging on to that machine? Any help greatly appreciated.
  6. cathl

    Checking dynamically named forms

    OK here is the solution I used: function nextCheck(obj) { var missinginfo = ""; if (obj.type_id.value=="") { missinginfo += "\n Budget Type"; } if (obj.budget.value=="") { missinginfo += "\n Budget"; } if (obj.start_date.value=="") {...
  7. cathl

    Checking dynamically named forms

    Thanks for you help!
  8. cathl

    Checking dynamically named forms

    Hi, I am trying to use Javascript to check a form which is named dynamically but my code isn't working. My cgi script creates a HTML page which contains forms named form0, form1, form2 etc. Each form contains a field named type_id, a field named budget and a field named start_date. Here is my...
  9. cathl

    Detection or Removal of Caching

    I was told that this tag does not work for IE4 and 5, I tried it myself and couldn't get it to work. Has anyone got a solution that works with IE5?
  10. cathl

    Parsing ONLY DATA from XML Doc

    I am new to XML but I believe you can use PHP to do this - have a look on the php website: http://www.php.net/manual/it/ref.xml.php
  11. cathl

    ERROR 1030: Got error 127 from table handler

    I got this error message once, I can't remember how I got it but it wasn't anything to do with Solaris. Anyway I fixed it using the REPAIR TABLE command, its worth a try!
  12. cathl

    Can you use onMouseOver on text?

    Thanks - I have now found the problem. It was in the function. I have put the text between a span too as suggested. Thanks for all your help!
  13. cathl

    Can you use onMouseOver on text?

    I am trying to call a javascript function when the mouse goes over a piece of text in the browser but it isn't working. I am using: <a href=# onMouseOver=&quot;openIt(0)&quot;>Home</a> where openIt is a javascript function. Can anyone tell me why this won't work (in ie and ns) and if there's a...
  14. cathl

    How to turn off php warning messages

    Thanks for your help it worked - I found php.ini and turned off the warnings. Cath.
  15. cathl

    How to turn off php warning messages

    Does anyone know how to turn off php's warning messages once it is installed on microsoft's iis server? Many thanks.
  16. cathl

    Can't access HTTP_POST_VARS

    OK thanks. Here's the form code from the html template: <form name=&quot;questionnaire&quot; action=&quot;questionnaire.php&quot; method=&quot;get&quot;> <table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; class=&quot;default&quot; name=&quot;maintable&quot...
  17. cathl

    Can't access HTTP_POST_VARS

    Hi, I am using html templates (with my PHP scripts) which contain forms. In some of the scripts I get nothing when I try and access the form variables when the method is &quot;post&quot;. When the method is &quot;get&quot; I can access them no problem. In other scripts with templates on the same...
  18. cathl

    Flash 4 is crashing my pc has anyone else had this problem?

    I am trying to run Flash 4 on Windows NT 4 but it crashes the pc every time I use it. Sometimes it happens whilst loading, sometimes whilst in the middle of making a movie. There is no error message everything just stops and I have to switch the pc off and on again. Have tried installing in VGA...

Part and Inventory Search

Back
Top