[PHP-WIN] Re: Problems with WinXP, & Apache

2002-03-12 Thread Devon Knowles
turned off altogether. Sometimes this will screw browsers up (even though it really shouldn't). Good luck finding your problem. - Devon Knowles -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: Parse error?!

2002-03-02 Thread Devon Knowles
Can you post the surrounding code for us? Sometimes the line number won't literally match the line number in the file. - Devon Knowles

[PHP-WIN] Errors when building in .NET

2002-03-02 Thread Devon Knowles
visual studio .net\vc7\platformsdk\include\rpcasync.h The latter two may just error out because of problems in the first, but either way, the build fails. If anyone knows what I am doing wrong or how to fix this, please let me know. Thanks in advance. - Devon Knowles -- PHP Windows Mailing List

[PHP-WIN] Re: error query

2002-03-02 Thread Devon Knowles
Try building the SQL statement outside of the query. I've usually found that it fixes the problem. $sql = "SELECT ID, alt FROM " . $MID . " LIMIT 10"; $newpics = mysql_query($sql); - Devon Knowles -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe,

[PHP-WIN] Re: compiling from cvs with vc++.net

2002-02-25 Thread Devon Knowles
I've had the exact same problem. If you ever get it to work I'd be thankful to hear how you did it. - Devon Knowles -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] FindWindow() in C# called by PHP

2002-02-20 Thread Devon Knowles
Has anyone been able to get C# code working that is called from PHP and uses the FindWindow() ATL call? I have a COM module that works outside of the PHP environment fine, but when called from a PHP script, FindWindow() always returns 0. Thanks in advance. - Devon Knowles -- PHP Windows

[PHP-WIN] Re: WinXP Error Passing Variables (and creating)

2002-02-19 Thread Devon Knowles
No offense, but you are doing something completely wrong. For starters, your has neither a method nor an action. Try this code, if you have Apache and PHP installed correctly, it will work. Even on XP. Test Form Username: " . $username; } else { echo "No data yet, or \$username is em

[PHP-WIN] External command output

2002-02-17 Thread Devon Knowles
sole.WriteLine(e.Message); } finally { Console.WriteLine(""); } } } } If anyone has any idea why this isn't working, I'd appreciate the help. I really don't want to have to output to a text file and then have to read it again in my script. - Devon Knowles [EMAIL PROTECTED]