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: *

  1. GiantDaddY

    The specified CGI application misbehaved

    I just got it working ! As most It people I wanted to run before I could walk ;-) I entered the php5isapi.dll instead of php.exe in the IIS configuration and now everything works fine !
  2. GiantDaddY

    The specified CGI application misbehaved

    Correction of my previous post, when I removed the phpinfo() function from my script, I get the same error again !
  3. GiantDaddY

    The specified CGI application misbehaved

    No, I'm not running php as a CGI, when I do everything works fine, but adding the line to my script helped to get the normal version of php running. A strange thing though, when I run the phpinfo() function I only get text, when I run it in cgi mode I get a nice version with colors and all.
  4. GiantDaddY

    The specified CGI application misbehaved

    I'm using php 5.0.4 on a Windows 2000 server. When I try the following code : <html> <head> <title>PHP Test</title> </head> <body> <?php echo "<p>Hello World</p>"; ?> </body> </html> I get the following : " CGI Error The specified CGI application misbehaved by not returning a...
  5. GiantDaddY

    Check if field is blank

    When I displayed the value of the field between 2 characters I could only see 1 blank. But your code works and is better than checking with the asc function and the 32 value, so I adopted it in my script, tnx !
  6. GiantDaddY

    Check if field is blank

    Can someone please tell me way this works : if (asc(rsSVPAVP("spbijz")) <> 32) then and this does not : if (rsSVPAVP("spbijz") <> " ") then ???????????????????????????????????
  7. GiantDaddY

    Draw text with largest possible font in rectangle

    I want to reserve space ( a rectangle )on my document to print text in, I would want the text 2 b in the largest possible font possible for that text and in the specific rectangle, I don't want to perform a loop where I create a font, check if the text can fit the rectangel with that font and if...
  8. GiantDaddY

    Setting mediatype/color

    Does any1 have any experience with setting mediatype or mediacolor when printing ?? Need help with this ! Tnx.
  9. GiantDaddY

    XHTML questions

    Hi, can any1 help me with these XHTML questions ? - I want 2 put something on the bottom of my page, in normal HTML I used an empty table with height=xxx to get blank space first, that worked fine, but in XHTML height is not allowed, any1 have an idea 2 this in another way, without having to...

Part and Inventory Search

Back
Top