On Mon, 2006-06-26 at 13:50, Beauford wrote:
> Aside from my previous gd problems, here's another problem. It appears that
> PHP5 (for Windows anyways) does not support MySQL (which in itself is
> riduculous), but here's my problem. I have a script I just downloaded that
> works perfectly on Linux/Apche/MySQL/PHP5, but when I run it on Windows 2000
> with PHP 4.4 I get a page full of errors. Lets forget about the errors, does
> anyone have any idea how to get PHP5 and MySQL to work on Windows. I have
> already tried 100 different variations of things from information I found
> searching out this problem, but maybe someone has a new idea.
> 
> If it were me I'd just run this site on Linux, but this is for a friend who
> wants to use IIS. If your curious the errors are below.
> 
> Thanks
> 
> B
> 
> Warning: mysql_numrows(): supplied argument is not a valid MySQL result
> resource in G:\Websites\Webtest\caalogin\include\database.php on line 207


The fact that you get an invalid resource error from a mysql_xxx()
function indicates that you do indeed have a working MySQL lib. Looking
at the error further indicates that you are not passing a valid mysql
result handle to the function. Please show us the rest of the code where
you perform the query and attempt to retrieve the result. Since I see no
errors about connecting to the MySQL database, I assume that you have
that part working.

Cheers,
Rob.
-- 
.------------------------------------------------------------.
| InterJinn Application Framework - http://www.interjinn.com |
:------------------------------------------------------------:
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for       |
| creating re-usable components quickly and easily.          |
`------------------------------------------------------------'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to