[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]

[PHP-WIN] Lines of txt

2001-09-27 Thread Devon
Below is my source that sipply opens a file http://localhost/Install.txt";, "r"); if ($fp) { print"The file exists!"; } else { print"The file does not exist"; } ?> I Need to be able to a. print the file out b. The file must be printed out line by line c. Write each seperate line to a mysql data

[PHP-WIN] Individual Lines of text

2001-09-24 Thread Devon
I am pulling down data from a switch which looks like Port 1, 33889029532 Port 2, 0 Port 3, 135852 Port 4, 6652941243 etc etc I need to know if it is possible with PHP to write a script that will pull the individual lines of this text file and store them into a mysql database line by line. Chee

[PHP-WIN] Table Search please HELP

2001-09-06 Thread Devon
Below is an example of my code which searches a table and prints the result, the problem is that it only displays the TechContact where I want it to display all the fields that associated with it in that row off the colum eg. Mobile, AdminContact etc etc Any suggestions? if ($TechContact == "")

[PHP-WIN] searching help

2001-09-05 Thread Devon
$Query = "SELECT * FROM enet WHERE TechContact LIKE '%' AND AdminContact LIKE '%'"; This query simply prints out my entire tables, is there a way using PHP so I can make the '%' a user input so they can search the table under those fields. Cheers -- PHP Windows Mailing List (http://www.php