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 TouchToneTommy 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 waltert

  1. waltert

    Date verification technique?

    snowbee is right, but... It only works for dates between 1970 and 2038. This will work for any date. Thats why I made it. I needed date methods to work outside the "normal" date system EPOCH range. Walter
  2. waltert

    Installing PHP

    For an straight forward solutin to install Apache, Perl, PHP and mySQL on a windows box (NT or 2k), I have a document that outlines all the above. It even works *without* any registry settings what-so-ever. If your still interested... web.torres.ws/dev/php Hope it helps walter
  3. waltert

    FTP Server Status

    I read the orginal question as he was asking for a script to attempt a login on a FTP server and then create a web page that indicates success or failure of that attempt. I would assume that this script would be platform independant. I'd like to see such a script. walter
  4. waltert

    Date verification technique?

    I did this in PHP. I stripped it from a new Date Class I building. I know you can convert it... function ckDate( $_intMonth, $_intDay, $_intYear ) { return ( ( ( $_intYear >= 1 ) && ( $_intYear <= 32767 ) ) && ( ( $_intMonth >= 1 ) && ( $_intMonth <= 12 ) ) && ( (...
  5. waltert

    landscape printing - does anybody know how?

    This is the answer I've seen in many places. But it does not solve the problem. This CSS attribute is not supported on *any* browser, as far I as I can tell. Have you go this to work? Walter
  6. waltert

    VB and AS/400, either ODBC install through code OR DSN-less connection

    Right now I'm having trouble with getting connected to an AS/400. Normally, using the Client Access ODBC-driver, it's not a problem at all. This time I'm creating an Visual Basic application with an AS/400 connection that has to be installed on a network drive. From there it must be available...

Part and Inventory Search

Back
Top