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 wOOdy-Soft 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 Protonman

  1. Protonman

    A trivial question?

    Hi, I'm asking this question out of curiosity rather than neccessity: E.g: ------ //Vars char foo[20] = "abcd"; char *bar = "ghjk"; a) scanf("%s",bar); /*doesn't work; compiles but crashes (using g++) */ b) strcat("qwerty",foo); /* ditto, although foo shouldn't change */ c)...
  2. Protonman

    Selecting parents of a child node (JavaScript, DOM)

    Hi, Is there a way (function) to get the parents (or immediate parent) of a child tag? e.g.: <div> <p id="para"> A simple example </p> </div> How does one get the "div" tag when only the "p" tag is identifiable either via "id" or index? i.e. is there a function like...
  3. Protonman

    MyISAM database copy

    Hello, I have just tried to copy my database (MyISAM) to another computer also running the same operating system as my computer. What I have copied and pasted is the enitire database folder in the 'data' folder of MySQL. I can select the db and 'show tables' works, but if I try to run "SELECT...
  4. Protonman

    Columns and Grant statements

    Hello, My simple question: What statement must one use to grant a person privileges on a table EXCEPT on one column? Revoking previously set columns dont seem to work because those prives are in mysql.tables_priv. Many thanks in advance Protonman
  5. Protonman

    ErrorDocument

    Addon: Error.htm is not in the protected directory
  6. Protonman

    ErrorDocument

    When I use 'ErrorDocument 401 /error.htm in a .htaccess file and I test it out by pressing 'Cancel', the browser only returns the path name. I can open error.htm normally in a browser. Also: Is there a way to access directories used in e.g. a .htaccess file without changing ServerRoot? like...

Part and Inventory Search

Back
Top