Re: [PHP-WIN] Can php execute separte .net file

2007-08-07 Thread Thomas Hearn
Tony, Not sure really what you're asking here, but if you're asking can a .NET language execute PHP inline or vice versa, then the answer is somewhat. Check out http://www.php-compiler.net/doku.php The reason I say somewhat is because this is a MSIL extension of PHP. It cannot generally

Re: [PHP-WIN] PHP, MYSQL and Apache

2007-08-07 Thread Thomas Hearn
This sounds very typical of a problem with WHERE in your path MySQL is set. Open up your PATH env variable, and look to see if your PHP ext directory (with the mysql ext) is listed in the path BEFORE your actual MySQL installation. If it isn't, then add it. The dlls that are used by PHP and

Re: [PHP-WIN] Help with if

2007-08-06 Thread Thomas Hearn
Stephen, Should be if ($rank != Unregistered) However, what is Unregistered? Is it a variable, constant? There is a possibility that it should be ($rank != $Unregistered) If you are comparing $rank to an actual text value then it should be ($rank != "Unregistered") Hopefully that helps.