[PHP-WIN] Why can't I retrieve a query to MySQL?

2002-06-07 Thread Blaine Dinsmore
I have not been able to return results using MySQL with PHP 4.2.1 and IIS 4.0. I was wondering if anyone knew why? Despite putting error trapping for all my MySQL functions I only get a blank screen. thanks, Blaine -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: htt

[PHP-WIN] Re: PHP with IIS

2002-06-07 Thread Tomator
> How I know my IIS is supporting PHP? > And what have to do so that I can deploy my PHP pages at IIS? If PHP is installed and IIS is configured it should work. Try to view http://youraddress/myfunnypage.php, with some PHP code, like phpinfo(); If you see some tables with parameters and variabl

[PHP-WIN] Error In Script

2002-06-07 Thread Evans, Josh
I created this script to ping a host and if a response is not received then insert into a database and ping it after x amount of minutes. The script works fine until it starts to ping the hosts that it didn't receive a response from the database then it goes to page cant be displayed. I need to s

[PHP-WIN] Re: problem with IIS..

2002-06-07 Thread Tomator
"Nick Stuart" <[EMAIL PROTECTED]> wrote: > Hello all, I have recently installed php4.2.1 with IIS 5 and 2000 SP2 and > I'm having some wierd problems. PHP "IS" running but it is not running > correctly. It doesnt seem to be posting and/or getting any info from > forms/pages and the request variabl

[PHP-WIN] Evaluation

2002-06-07 Thread Bob Sears
Finally, the e-commerce code I've been working on for the past few months is about ready to fly. However, since I've been so close to it (design, code, testing, etc), I might have missed something critical. Would some in this group have time to go through it with a red marking pen and give me s

[PHP-WIN] .server side includes on Windows IIS 4.0

2002-06-07 Thread Brad Deters
To answer the 3 questions: 1.) These includes are located on the same server. 2.) Yes, all the other includes do work. They are pointing to .htm files. 3.) Yes, we would have considered it, but we looked at the proposition of changing everything over to php and using the SSI seemed to be the cl

[PHP-WIN] problem with IIS..

2002-06-07 Thread Nick Stuart
Hello all, I have recently installed php4.2.1 with IIS 5 and 2000 SP2 and I'm having some wierd problems. PHP "IS" running but it is not running correctly. It doesnt seem to be posting and/or getting any info from forms/pages and the request variables. If I have a page like index.php it works fine

[PHP-WIN] looping data from MySQL to create an array then display it

2002-06-07 Thread Matt Babineau
"; for ($i=0; $i < $result2_rows; $i++ ) { $rows2 = mysql_fetch_array($result2); $dailyCount[date("d-m-Y", $rows2["DateTime"])] = $rows2["Count"]; } for ($i = 0; $i < count($dailyCount); $i++) { echo $dailyCount[$i] . ""; } ?> I am trying to create an array with a "d-m-Y"

Re: [PHP-WIN] WIN NT40 PHP Apache Mysql PHPNUKE

2002-06-07 Thread Olav Bringedal
Im 99% sure it is the register_globals thingy. It messes up the use headers, if not used in a very strict way. try to turn it off and i bet you'll be fine... (or revrite the login-script so it doesnt output any warnings or such before the header is sent. --- Markus Selinski <[EMAIL PROTECTED]

[PHP-WIN] WIN NT40 PHP Apache Mysql PHPNUKE

2002-06-07 Thread Markus Selinski
Hi, i installed Apache+PHP+MySQL at a Windows NT 4.0 Sever. Everything seems to run fine. The Version of Apache or Php is not important, because i was trying it allready with all versions. My Problem is that when i install phpnuke, nothing will happen. I mean if i enter a password, the website j

php-windows Digest 7 Jun 2002 11:09:43 -0000 Issue 1180

2002-06-07 Thread php-windows-digest-help
php-windows Digest 7 Jun 2002 11:09:43 - Issue 1180 Topics (messages 14111 through 14121): .server side includes on Windows IIS 4.0 14111 by: Brad Deters 14113 by: brother 14114 by: Shrock, Court Zend Compilling... 14112 by: Luis Ferro Extracting data from

Re: [PHP-WIN] php with apache2.00

2002-06-07 Thread Cassiano Dal Pizzol
for the 1000 time put the folowing code in ur apache conf LoadModule php4_module c://experimental/apache2filter.dll AddType application/x-httpd-php .php .phtml Cassiano Dal Pizzol Informática CIELO [EMAIL PROTECTED] www.cielo.ind.br UIN 72941129 - Original Message - From: "Gianfranco"

[PHP-WIN] php with apache2.00

2002-06-07 Thread Gianfranco
come si installa php come modulo su windows XP con server APACHE 2 ?? gianfranco How to install php as module to windows XP with Apache 2 server?? gianfranco - Original Message - From: "brother" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 07, 2002 10:27 AM Subject: RE:

RE: [PHP-WIN] PHP with IIS

2002-06-07 Thread brother
A standard IISserver does not support PHP, you have to install PHP by your self, if you still want to try if the server is capable of handling PHPfiles but don't wanna check via ISM just put a PHP document with, for instance, the phpinfo() function. /brother > -Original Message- > From:

Re: [PHP-WIN] Detecting Usernames

2002-06-07 Thread Carl Whittaker
Sorry should have mentioned im using xitami :) "Court Shrock" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > You could configure IIS to require authentication before giving them access > to the form, thereby allowing you access to their username. It really >