[PHP-WIN] PHP .Net and a boat load of questions !!!

2003-02-02 Thread pingywon MCSE
Hello all first and foremost let me just thank anyone who responds to this post..this group appears rather helpful (Im new here) Im also new to php (Big surprise ? ) anyway heres the scoop: Im beginning work on a "testing engine" type thing...heh pretty much the form will open up ask you a quest

[PHP-WIN] Re: PHP on Windows.net Server

2003-02-02 Thread pingywon MCSE
Im so glad to find I am not the only person having this problem with Server 2003 But your solution didn't appear to help..or I don't understand it correctly.. When I add the Web Services Extension "php" then I point the dir to the php.exe in my c:\php dir it gives me a security error and I cant g

[PHP-WIN] php/mysql query

2003-02-02 Thread Anthony Ritter
Working on: Win 98 / mysql 3.23.55 / php 4 I installed mysql 3.23.55 and wanted to check the user table in the mysql db. The query was: SELECT User FROM user WHERE host='localhost'; The output was: xx user | xx || || root

php-windows Digest 3 Feb 2003 01:26:38 -0000 Issue 1569

2003-02-02 Thread php-windows-digest-help
php-windows Digest 3 Feb 2003 01:26:38 - Issue 1569 Topics (messages 18298 through 18305): Re: Selected Value! 18298 by: Bobo Wieland Problem closing COM object 18299 by: Chris Kranz Re: HLP! CAN'T WRITE ON A FILE 18300 by: phplam PHP 4.3.0 vs 4.2.3 183

[PHP-WIN] xml rdf and php

2003-02-02 Thread parvez Soobhany
hii i'm a university student, doing my project on rdf , xml and php. i'm tying to use php dom of php3.0 to create xml pages and to add tags...but the functions are not functioning...the function are declared as undefined...can any one help plus, has any one some knowledge about how to to use RDF

[PHP-WIN] Images-weird!!

2003-02-02 Thread Mihail Bota
Hello, If you have time, please run the code below. It is a very simple code which has 2 nested loops and assigns colors to a given value. If the product of $i and $j is smaller or equal to 256 (exactly the number of colors allowed), then you'll get a random pattern. If this product is bigger tha

[PHP-WIN] Re: [PHP] Looping through the mysql_field_name function

2003-02-02 Thread Philip Olson
On Sun, 2 Feb 2003, Davy Obdam wrote: > Hi ppl, > > I have a problem that probably very simple, but i cannot figure it out > right now > I need to get the field names of my database. I have a query like select > * from books and now i wanna have both the result and the field name. I > have

[PHP-WIN] Looping through the mysql_field_name function

2003-02-02 Thread Davy Obdam
Hi ppl, I have a problem that probably very simple, but i cannot figure it out right now I need to get the field names of my database. I have a query like select * from books and now i wanna have both the result and the field name. I have been trying with mysql_field_name, but not succesful

[PHP-WIN] PHP 4.3.0 vs 4.2.3

2003-02-02 Thread Norbert Grüttner
Dear NG, I have developped a small PHP application under W98, PWS and PHP 4.3.0. Trying to call the PHP modules on my real website i get error message: PHP Fatal error: Unable to open /php_test.php in Unknown on line 0 The URL in the browsers shows internet //myweb/php_t

[PHP-WIN] Re: HEEEELP! CAN'T WRITE ON A FILE

2003-02-02 Thread phplam
Hi Dash, I did it ! I did it ! I follow your instructions and I did it. I reinstalled 4.2.3 instead of RC2. Now, all is right Thanks a lot. Thanks to you also chris fo phplam "Phplam" <[EMAIL PROTECTED]> escribió en el mensaje [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello ! > I'm

[PHP-WIN] Problem closing COM object

2003-02-02 Thread Chris Kranz
Hey there, I've built a nice little app for a client that will open a COM object, and save data to an Excel spreadsheet. However, I'm having problems closing it. It seems to close fine on my laptop, but on my clients machine, the instance of Excel stays loaded, and multiple instances are loaded ev

[PHP-WIN] Re: Selected Value!

2003-02-02 Thread Bobo Wieland
Do you get a selection at all? A select-tag should, in xhtml (that i think everyone should use), look like this: First object Second Object ... n Object I usually use mysql_fetch_object like this: \n"); while ($fp_kat = mysql_fetch_object($result)) { if ($fp_kat->kat_id ==

php-windows Digest 2 Feb 2003 12:16:24 -0000 Issue 1568

2003-02-02 Thread php-windows-digest-help
php-windows Digest 2 Feb 2003 12:16:24 - Issue 1568 Topics (messages 18292 through 18297): sessions and global register 18292 by: Pat Johnston Re: Register globals on and off 18293 by: Pat Johnston Selected Value! 18294 by: Anthony Judd 18295 by: Anthony Jud

[PHP-WIN] Retrieving field name of Database

2003-02-02 Thread Davy Obdam
Helloo people, I have to build a database abstraction class with support for XML output. My XML output has to look like this: value value ... value value ... Well i almost got it, but how do i get all the field names of my MySQL tables? This is my code, a par