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 SkipVought 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. Dan59173

    !!!!HELP!!! PS 6 Is Bloating My Graphics!

    If this problem only occurs in Netscape but not in IE using the same image files, then I suspect that the problem is browser interpretation of the html code. Make sure that cellspacing and cellpadding is set to 0, if not specified, then specify them and set it to 0.
  2. Dan59173

    when I change #include virtual to php include my form stops working

    The php equivalent to SSI #include virtual= is virtual(), not include() Dan
  3. Dan59173

    password variable returns empty field

    Do you have a = between name and "password" in the input tag? The above does not have it.
  4. Dan59173

    View Source

    Use an offline browser to get the page (or the whole site) downloaded to your computer. I use WinHTTrack Website Copier from http://www.httrack.com.
  5. Dan59173

    Passing value from submit option to input option

    Not sure why you want to do the above, but take a look at http://www.w3schools.com/js/tryit.asp?filename=tryjs_putdropdown The above example basically does exactly what you want to do. It has complete example so you should be able to figure it out. Dan
  6. Dan59173

    text item SUBSTRING

    var hh = formVar.substr(0,2); var mm = formVar.substr(2,2); Of course the above assumes that user entered 4 digits. You may want to check the length or use the length of the string as part of the substr call. Go to http://www.w3schools.com and click on "Learn JavaScript" to learn...
  7. Dan59173

    What is wrong with this UPDATE command??

    You didn't actually say what problem you were seeing with your UPDATE statment. Syntax itself looks OK. I assume that the statement is surrounded by double quotes " and not single quotes '. Does the record get updated at all? Any mySql error messages? Does $formAlbumID contain what you...
  8. Dan59173

    Huge horizontal scroll in IE 5.5

    I couldn't install IE5 when I had IE6 installed, that was the reason it took me so long to figure out what the users were trying to tell me. Luckly on one of my computers, I use a removable hard drive kit, so, I trashed one of my hard disks and installed IE 5 on it. So all I have to do is to...
  9. Dan59173

    Huge horizontal scroll in IE 5.5

    Try changing your percentage margins to pixels to see if the problem goes away. As I said in my previous post, I had text-indent with percentage value and it messed my pages up so bad IE 5.x users could say was that my page was stretched out. I couldn’t believe that until I finally installed...
  10. Dan59173

    Huge horizontal scroll in IE 5.5

    I think, it is something in your javascript. I thought at first it was something in your css, because I had a similar problem when I coded text-indent: 5% on my web site. But, I noticed that soon as I copied your index.html and the style.css to my hard disk and looked at the page, the page...
  11. Dan59173

    New to PHP, Keep gettng undefined Variable

    If you want to use the names on the form as the variable name you need register_globals turned on. You can check that using phpinfo() function call. Now, in order to access the form variables if the register_global is off, you can use $_POST[email] and $_POST[name], etc. Dan
  12. Dan59173

    Spreadsheet output looklike in PHP

    How about using border=1 in the html table tag?
  13. Dan59173

    Delete part of the value of a variable?

    You can use the parse_url function to get just the host name. $ref= parse_url($HTTP_SERVER_VARS['HTTP_REFERER']); echo $ref[host]; // will output www.someserver.com Look at the PHP manual URL functions for full detail Dan
  14. Dan59173

    My HTML Page Displays the N etscape Symbol in Address window

    I see the regular IE icon. Dan
  15. Dan59173

    My HTML Page Displays the N etscape Symbol in Address window

    If you are on a Windows platform and you are looking at your html page using Open to display the file, then I would say it has to do with file assocation on your PC. What is the file extention (type)? You may have associated .html with IE, but not .shtml, or .htm, etc. Dan
  16. Dan59173

    tables layout problem

    Tony was correct. You need to add the valign=top to the td tag where you have the comment sub-menu. Since your navigation table is inside that cell. Dan
  17. Dan59173

    Variables not passing

    Check the phpinfo() output and check the settings for register_globals. I suspect in your case it is off. If it is off you can use the following to display the value. $_SERVER['HTTP_USER_AGENT'] Dan
  18. Dan59173

    How to extract the member name of a PDS allocated to SYSTSIN ?

    You want to use listalc tso command to list the allocated datasets along with outtrap. Then go through the outtrap buffer looking for the SYSTSIN DD allocation and then parse out the member name. Just try the TSO LISTALC command with it's various parameters to get the simplest output with the...
  19. Dan59173

    Rexx Problem

    When you submit a batch job as above in your JCL, then you will need to check the output of the batch job to look for your Rexx program output in the JES spool. Do you have SDSF or something to check batch job output? Now if you run your Rexx program in TSO, then you would see the output on...
  20. Dan59173

    Rexx Problem

    Humm, if you had JCL to run the rexx program, then it was a batch job, "HELLO WORLD" would not show up on your monitor screen. What operating system are we talking about? MVS? If so you would need SYSPRINT or SYSTSPRT DD statments in your JCL and that is where you should check for...

Part and Inventory Search

Back
Top