[PHP-DOC] Bug #15806 Updated: DirectIO documentation lacking

2002-03-20 Thread georg

 ID:  15806
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: 4.1.2
-Assigned To: 
+Assigned To: georg


Previous Comments:


[2002-03-01 03:18:42] [EMAIL PROTECTED]

The direct io documentation is lacking to say the least. I cant work
out why it was added as a new extension the way it is at the moment.

Would someone like to document the main differences between that and
the standard fopen/fputs/fclose etc.


Cameron




-- 
Edit this bug report at http://bugs.php.net/?id=15806&edit=1




Re: [PHP-DOC] cvs: phpdoc /en/functions mysql.xml

2002-03-20 Thread Andrew Lindeman

Hold On!!!  Look in the source!?  The second param exists!  That's why I 
asked which was wrong?!

--Andrew

On Wednesday 20 March 2002 04:21 pm, Chris Newbill wrote:
> cnewbill  Wed Mar 20 17:21:29 2002 EDT
>
>   Modified files:
> /phpdoc/en/functions  mysql.xml
>   Log:
>   See Bug #16187 The second parameter can't be used cause a number cannot
> be used as an object property.  ie row->0 is invalid while row->field is,
> so MYSQL_NUM and MYSQL_BOTH don't matter it should always be MYSQL_ASSOC.
>
>
> Index: phpdoc/en/functions/mysql.xml
> diff -u phpdoc/en/functions/mysql.xml:1.92
> phpdoc/en/functions/mysql.xml:1.93 ---
> phpdoc/en/functions/mysql.xml:1.92Tue Mar 19 14:54:07 2002
> +++ phpdoc/en/functions/mysql.xml Wed Mar 20 17:21:29 2002
> @@ -1,5 +1,5 @@
>  
> -
> +
>   
>MySQL Functions
>MySQL
> @@ -1134,9 +1134,6 @@
>   
>objectmysql_fetch_object
>   
> resourceresultm> -  int
> -result_type
> -   
>   
>  
>   Returns an object with properties that correspond to the fetched
> @@ -1150,11 +1147,18 @@
>   their offsets (numbers are illegal property names).
>  
>  
> - The optional argument result_type is a
> - constant and can take the following values: MYSQL_ASSOC,
> - MYSQL_NUM, and MYSQL_BOTH. See
> - mysql_fetch_array for explanation
> - of these constants.
> +  
> +
> +  
>  
>  
>   Speed-wise, the function is identical to

-- 
Thus spake the master programmer:
"When a program is being tested, it is too late to make design changes."
-- Geoffrey James, "The Tao of Programming"



[PHP-DOC] Bug #16187 Updated: mysql_fetch_object docs

2002-03-20 Thread cnewbill

 ID:  16187
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Open
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: 4.1.2
 New Comment:

Fixed in CVS.


Previous Comments:


[2002-03-20 16:49:50] [EMAIL PROTECTED]

I guess see what you're saying.  The documentation kind of contradicts
itself.  Now, which part is wrong?




[2002-03-20 15:50:23] [EMAIL PROTECTED]

Did you read the code at all? It is a documentation problem, not more,
not less. How would the parameters to this function be useful, if only
one of the possible constant values can be used?



[2002-03-20 12:41:26] [EMAIL PROTECTED]

The bug system is not the appropriate forum for asking support
questions. For a list of a range of more appropriate places to ask
for help using PHP, please visit http://www.php.net/support.php

Anyway, it means you can use
$object->field (with the fieldnames like in mysql_fetch_array)
but not
$object->1 (like in mysql_fetch_row).

If you want more clarification to translate something correctly, ask it
on [EMAIL PROTECTED] If you just want to know how it works, ask on
[EMAIL PROTECTED]



[2002-03-20 10:57:18] [EMAIL PROTECTED]


 mysql_fetch_object is similar to
 mysql_fetch_array, with one difference - an
 object is returned, instead of an array.  Indirectly, that means
 that you can only access the data by the field names, and not by
 their offsets (numbers are illegal property names).


 The optional argument result_type is a
 constant and can take the following values: MYSQL_ASSOC,
 MYSQL_NUM, and MYSQL_BOTH. See
 mysql_fetch_array for explanation
 of these constants.


Could someone please explain this?

TIA,

Manuzhai




-- 
Edit this bug report at http://bugs.php.net/?id=16187&edit=1




[PHP-DOC] cvs: phpdoc /en/functions mysql.xml

2002-03-20 Thread Chris Newbill

cnewbillWed Mar 20 17:21:29 2002 EDT

  Modified files:  
/phpdoc/en/functionsmysql.xml 
  Log:
  See Bug #16187 The second parameter can't be used cause a number cannot be 
  used as an object property.  ie row->0 is invalid while row->field is, so 
  MYSQL_NUM and MYSQL_BOTH don't matter it should always be MYSQL_ASSOC.
  
  
Index: phpdoc/en/functions/mysql.xml
diff -u phpdoc/en/functions/mysql.xml:1.92 phpdoc/en/functions/mysql.xml:1.93
--- phpdoc/en/functions/mysql.xml:1.92  Tue Mar 19 14:54:07 2002
+++ phpdoc/en/functions/mysql.xml   Wed Mar 20 17:21:29 2002
@@ -1,5 +1,5 @@
 
-
+
  
   MySQL Functions
   MySQL
@@ -1134,9 +1134,6 @@
  
   objectmysql_fetch_object
   resourceresult
-  int
-result_type
-   
  
 
  Returns an object with properties that correspond to the fetched
@@ -1150,11 +1147,18 @@
  their offsets (numbers are illegal property names).
 
 
- The optional argument result_type is a
- constant and can take the following values: MYSQL_ASSOC,
- MYSQL_NUM, and MYSQL_BOTH. See
- mysql_fetch_array for explanation
- of these constants.
+  
+
+  
 
 
  Speed-wise, the function is identical to





[PHP-DOC] Bug #16187 Updated: mysql_fetch_object docs

2002-03-20 Thread alindeman

 ID:  16187
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: 4.1.2
 New Comment:

I guess see what you're saying.  The documentation kind of contradicts
itself.  Now, which part is wrong?



Previous Comments:


[2002-03-20 15:50:23] [EMAIL PROTECTED]

Did you read the code at all? It is a documentation problem, not more,
not less. How would the parameters to this function be useful, if only
one of the possible constant values can be used?



[2002-03-20 12:41:26] [EMAIL PROTECTED]

The bug system is not the appropriate forum for asking support
questions. For a list of a range of more appropriate places to ask
for help using PHP, please visit http://www.php.net/support.php

Anyway, it means you can use
$object->field (with the fieldnames like in mysql_fetch_array)
but not
$object->1 (like in mysql_fetch_row).

If you want more clarification to translate something correctly, ask it
on [EMAIL PROTECTED] If you just want to know how it works, ask on
[EMAIL PROTECTED]



[2002-03-20 10:57:18] [EMAIL PROTECTED]


 mysql_fetch_object is similar to
 mysql_fetch_array, with one difference - an
 object is returned, instead of an array.  Indirectly, that means
 that you can only access the data by the field names, and not by
 their offsets (numbers are illegal property names).


 The optional argument result_type is a
 constant and can take the following values: MYSQL_ASSOC,
 MYSQL_NUM, and MYSQL_BOTH. See
 mysql_fetch_array for explanation
 of these constants.


Could someone please explain this?

TIA,

Manuzhai




-- 
Edit this bug report at http://bugs.php.net/?id=16187&edit=1




Re: [PHP-DOC] OT question

2002-03-20 Thread Egon Schmid

From: "Gre7g Luterman" <[EMAIL PROTECTED]>

> I love how the PHP manual is displayed on the php.net web site,
and
> I'm wondering what program they used to generate those pages.  Is
the
> code publicly available?  If not, does anyone know of any publicly
> available code which does a similar thing?
>
> I've recently written a manual for djbdns and I'm looking for a
way
> to make it more "net friendly" than a single PDF file.  I'd love
to
> have it broken into sections, have prev/next capabilities, search,
> etc., but I don't want to go reinventing the wheel.

We are using only publicly available code. Look for DocBook, Jade,
Stylesheets and so ... If you want more learn about the PHP
documentation, download the howto.tar.gz

-Egon




[PHP-DOC] Bug #16187 Updated: mysql_fetch_object docs

2002-03-20 Thread manuzhai

 ID:  16187
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Bogus
+Status:  Open
 Bug Type:Documentation problem
 PHP Version: 4.1.2
 New Comment:

Did you read the code at all? It is a documentation problem, not more,
not less. How would the parameters to this function be useful, if only
one of the possible constant values can be used?


Previous Comments:


[2002-03-20 12:41:26] [EMAIL PROTECTED]

The bug system is not the appropriate forum for asking support
questions. For a list of a range of more appropriate places to ask
for help using PHP, please visit http://www.php.net/support.php

Anyway, it means you can use
$object->field (with the fieldnames like in mysql_fetch_array)
but not
$object->1 (like in mysql_fetch_row).

If you want more clarification to translate something correctly, ask it
on [EMAIL PROTECTED] If you just want to know how it works, ask on
[EMAIL PROTECTED]



[2002-03-20 10:57:18] [EMAIL PROTECTED]


 mysql_fetch_object is similar to
 mysql_fetch_array, with one difference - an
 object is returned, instead of an array.  Indirectly, that means
 that you can only access the data by the field names, and not by
 their offsets (numbers are illegal property names).


 The optional argument result_type is a
 constant and can take the following values: MYSQL_ASSOC,
 MYSQL_NUM, and MYSQL_BOTH. See
 mysql_fetch_array for explanation
 of these constants.


Could someone please explain this?

TIA,

Manuzhai




-- 
Edit this bug report at http://bugs.php.net/?id=16187&edit=1




[PHP-DOC] OT question

2002-03-20 Thread Gre7g Luterman

I love how the PHP manual is displayed on the php.net web site, and 
I'm wondering what program they used to generate those pages.  Is the 
code publicly available?  If not, does anyone know of any publicly 
available code which does a similar thing?

I've recently written a manual for djbdns and I'm looking for a way 
to make it more "net friendly" than a single PDF file.  I'd love to 
have it broken into sections, have prev/next capabilities, search, 
etc., but I don't want to go reinventing the wheel.

Gre7g.

=
Gre7g Luterman   [EMAIL PROTECTED]  http://www.templeofluna.com/
Stay informed: http://www.templeofluna.com/keeper/mailinglist.htm

 I want to be the master of time and space, a living god,
...and then I'd like to visit Europe.




[PHP-DOC] cvs: phpdoc /de/functions ircg.xml

2002-03-20 Thread Georg Richter

georg   Wed Mar 20 15:12:22 2002 EDT

  Modified files:  
/phpdoc/de/functionsircg.xml 
  Log:
  
  Inserted ucn for ircg_pconnect, reformatting and typos
  
  

Index: phpdoc/de/functions/ircg.xml
diff -u phpdoc/de/functions/ircg.xml:1.9 phpdoc/de/functions/ircg.xml:1.10
--- phpdoc/de/functions/ircg.xml:1.9Wed Feb 13 16:54:16 2002
+++ phpdoc/de/functions/ircg.xmlWed Mar 20 15:12:20 2002
@@ -1,5 +1,5 @@
 
-
+
  
   IRC Gateway Funktionen
   IRC Gateway
@@ -45,7 +45,8 @@

 Installation
 
-Eine ausführliche Installationsanleitung befindet sich hier.
+Eine ausführliche Installationsanleitung befindet sich hier. 
 

   
@@ -54,7 +55,7 @@

 ircg_pconnect
 
-  Verbindung zum IRC-Server aufbauen
+Verbindung zum IRC-Server aufbauen
 


@@ -69,32 +70,43 @@
   arrayuser_settings
  
 
-  ircg_pconnect
-  
-Stellt eine Verbindung zum einem IRC Server her, und liefert eine 
Verbindunskennung.
-
-   
-Der Parameter username muss angeben werden, er 
legt den Benutzernamen auf dem Server fest.
-server_ip und 
server_port sind optional. Werden diese nicht angegben wird für 
server_ip der Wert 127.0.0.1 (localhost) und für 
server_port der Wert 6667 gesetzt.
-
-   
-Der Parameter server_ip muss aus einer 
IP-Adresse in numerischer Form bestehen. 
-   
-
-   
-   
-Die Ausgabe der IRC Meldungen und Ereignisse wird mit einem 
formatierten String, der vor dem Aufruf mit der Funktion 
ircg_register_format_messages im Parameter 
msg_format definiert.
-   
-   
-ctcp_messages
-   
-   
-user_settings
-   
+ ircg_pconnect
+ Stellt eine Verbindung zum einem IRC Server her, und liefert eine 
+Verbindunskennung.
+
+
+  Der Parameter username muss angeben
+  werden, er legt den Benutzernamen auf dem Server
+  fest. server_ip und
+  server_port sind optional. Werden diese
+  nicht angegben wird für server_ip der
+  Wert 127.0.0.1 (localhost) und für
+  server_port der Wert 6667 gesetzt.  
+  
+   
+Der Parameter server_ip muss aus einer IP-Adresse in 
+numerischer Form bestehen. 
+   
+   
+   Momentan gibt die Funktion ircg_pconnect
+   unabhängig davon, ob eine Verbindung zu Stande kam oder nicht,
+   einen gültigen Wert zurück.
+  
+ 
+  
+   Die Ausgabe der IRC Meldungen und Ereignisse wird mit einem
+   formatierten String, der vor dem Aufruf mit der Funktion
+   ircg_register_format_messages im Parameter
+   msg_format definiert. 
+  
+  
+   ctcp_messages
+  
+  
+   user_settings
+  
 
  Siehe auch: ircg_disconnect,
-ircg_is_conn_alive,
-ircg_register_format_messages.
+   ircg_is_conn_alive,
+   ircg_register_format_messages.
 

   
@@ -102,7 +114,7 @@

 ircg_fetch_error_msg
 
-  Liefert den Fehler des letzten ircg Funktionsaufrufes.
+Liefert den Fehler des letzten ircg Funktionsaufrufes.
 


@@ -112,14 +124,14 @@
   
resourceconnection
  
 
-  ircg_fetch_error_msg 
+ircg_fetch_error_msg 
Liefet den Fehler der Verbindung connection der letzten 
aufgerufenen ircg Funktion zurück.
 
-   
-   
-Die Fehlernummer wird im ersten Element des Arrays zurückgeliefert, 
der Fehlertext im zweiten Parameter.
-   
-   
+ 
+  
+   Die Fehlernummer wird im ersten Element des Arrays zurückgeliefert, der Fehlertext 
+im zweiten Parameter.
+  
+ 
 
  
ircg_fetch_error_msg Beispiel
@@ -137,7 +149,7 @@

 ircg_set_current
 
-  Setzt die Verbindung für die Ausgabe der IRC-Server Meldungen
+Setzt die Verbindung für die Ausgabe der IRC-Server Meldungen
 


@@ -147,11 +159,16 @@
   
resourceconnection
  
 
-  Setzt die Verbindung für die Ausgabe. Alle Meldungen des verbundenen 
IRC-Servers, der über den Parameter connection spezifiziert 
wurde, werden über die in der Funktion 
ircg_register_format_messages angegebenen Formatierungen 
ausgegeben.
+ Setzt die Verbindung für die Ausgabe. Alle Meldungen des
+verbundenen IRC-Servers, der über den Parameter
+connection spezifiziert wurde, werden über 
+die in der Funktion
+ircg_register_format_messages angegebenen
+Formatierungen ausgegeben.  
 
 
- Siehe auch: ircg_register_format_messages and
-ircg_lookup_format_messages.
+ Siehe auch: ircg_register_format_messages
+ and ircg_lookup_format_messages. 
 

   
@@ -160,7 +177,7 @@

 ircg_join
 
-  Einen Channel auf dem verbundenen IRC-Serve

[PHP-DOC] cvs: phpdoc /en/functions ircg.xml

2002-03-20 Thread Georg Richter

georg   Wed Mar 20 14:15:05 2002 EDT

  Modified files:  
/phpdoc/en/functionsircg.xml 
  Log:
  
  inserted ucn (valid return values when connect failed)
  
  
Index: phpdoc/en/functions/ircg.xml
diff -u phpdoc/en/functions/ircg.xml:1.25 phpdoc/en/functions/ircg.xml:1.26
--- phpdoc/en/functions/ircg.xml:1.25   Wed Mar 20 12:33:44 2002
+++ phpdoc/en/functions/ircg.xmlWed Mar 20 14:15:05 2002
@@ -1,5 +1,5 @@
 
-
+
  
   IRC Gateway Functions
   IRC Gateway
@@ -83,6 +83,10 @@
For now parameter server_ip will not do
any hostname lookups and will only accept IP addresses in
numerical form.
+  
+  
+   Currently ircg_pconnect always returns a valid
+   handle, even if the connection failed.
   
  
 





[PHP-DOC] Bug #16187 Updated: mysql_fetch_object docs

2002-03-20 Thread sander

 ID:  16187
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Open
+Status:  Bogus
 Bug Type:Documentation problem
 PHP Version: 4.1.2
 New Comment:

The bug system is not the appropriate forum for asking support
questions. For a list of a range of more appropriate places to ask
for help using PHP, please visit http://www.php.net/support.php

Anyway, it means you can use
$object->field (with the fieldnames like in mysql_fetch_array)
but not
$object->1 (like in mysql_fetch_row).

If you want more clarification to translate something correctly, ask it
on [EMAIL PROTECTED] If you just want to know how it works, ask on
[EMAIL PROTECTED]


Previous Comments:


[2002-03-20 10:57:18] [EMAIL PROTECTED]


 mysql_fetch_object is similar to
 mysql_fetch_array, with one difference - an
 object is returned, instead of an array.  Indirectly, that means
 that you can only access the data by the field names, and not by
 their offsets (numbers are illegal property names).


 The optional argument result_type is a
 constant and can take the following values: MYSQL_ASSOC,
 MYSQL_NUM, and MYSQL_BOTH. See
 mysql_fetch_array for explanation
 of these constants.


Could someone please explain this?

TIA,

Manuzhai




-- 
Edit this bug report at http://bugs.php.net/?id=16187&edit=1




[PHP-DOC] cvs: phpdoc /de preface.xml

2002-03-20 Thread Mark Kronsbein

mk  Wed Mar 20 12:39:51 2002 EDT

  Modified files:  
/phpdoc/de  preface.xml 
  Log:
  Typo
  
Index: phpdoc/de/preface.xml
diff -u phpdoc/de/preface.xml:1.12 phpdoc/de/preface.xml:1.13
--- phpdoc/de/preface.xml:1.12  Sat Mar 16 05:40:40 2002
+++ phpdoc/de/preface.xml   Wed Mar 20 12:39:51 2002
@@ -1,5 +1,5 @@
 
-
+
 
 
  
@@ -12,7 +12,7 @@
 für Webentwicklungen. PHP läßt sich in HTML einbinden. Seine Syntax erinnert
 an C, Java und Perl und es ist einfach zu erlernen. Das Hauptziel dieser Sprache 
 ist es, Webentwicklern die Möglichkeit zu geben, schnell dynamisch generierte
-Webseiten zu erzeugen. Aber PHP knn noch mehr.
+Webseiten zu erzeugen. Aber PHP kann noch mehr.

   
 





[PHP-DOC] cvs: phpdoc /en/functions ircg.xml

2002-03-20 Thread Georg Richter

georg   Wed Mar 20 12:33:44 2002 EDT

  Modified files:  
/phpdoc/en/functionsircg.xml 
  Log:
  
  typo(s) fixed
  
  
Index: phpdoc/en/functions/ircg.xml
diff -u phpdoc/en/functions/ircg.xml:1.24 phpdoc/en/functions/ircg.xml:1.25
--- phpdoc/en/functions/ircg.xml:1.24   Sat Feb  2 10:36:02 2002
+++ phpdoc/en/functions/ircg.xmlWed Mar 20 12:33:44 2002
@@ -1,5 +1,5 @@
 
-
+
  
   IRC Gateway Functions
   IRC Gateway
@@ -161,7 +161,7 @@
  Select the current connection for output in this execution
  context. Every output sent from the server connected to by
  connection will be copied to standard
- output while using default formating or a formar string set
+ output while using default formatting or a format string set
  specified by ircg_register_format_messages
  and selected by ircg_lookup_format_messages.
 





[PHP-DOC] Bug #16187: mysql_fetch_object docs

2002-03-20 Thread manuzhai

From: [EMAIL PROTECTED]
Operating system: 
PHP version:  4.1.2
PHP Bug Type: Documentation problem
Bug description:  mysql_fetch_object docs


 mysql_fetch_object is similar to
 mysql_fetch_array, with one difference - an
 object is returned, instead of an array.  Indirectly, that means
 that you can only access the data by the field names, and not by
 their offsets (numbers are illegal property names).


 The optional argument result_type is a
 constant and can take the following values: MYSQL_ASSOC,
 MYSQL_NUM, and MYSQL_BOTH. See
 mysql_fetch_array for explanation
 of these constants.


Could someone please explain this?

TIA,

Manuzhai
-- 
Edit bug report at http://bugs.php.net/?id=16187&edit=1
-- 
Fixed in CVS:http://bugs.php.net/fix.php?id=16187&r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=16187&r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=16187&r=needtrace
Try newer version:   http://bugs.php.net/fix.php?id=16187&r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=16187&r=support
Expected behavior:   http://bugs.php.net/fix.php?id=16187&r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=16187&r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=16187&r=submittedtwice




[PHP-DOC] Bug #15603 Updated: PHP output sometimes doesn't follow HTML 4.01 standards.

2002-03-20 Thread sniper

 ID:   15603
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
-Status:   Bogus
+Status:   Analyzed
 Bug Type: Documentation problem
 Operating System: Linux
 PHP Version:  4.0.5
 New Comment:

Duh..I should have read my own comment first. :)
Still a documentation problem.



Previous Comments:


[2002-03-20 10:37:36] [EMAIL PROTECTED]

This is not a bug. There is an option with which this
can be handled. Ask your hosting company to use it.




[2002-03-20 00:00:04] [EMAIL PROTECTED]

No feedback was provided for this bug for over a month, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".



[2002-02-19 06:34:59] [EMAIL PROTECTED]

you should be able to change this setting at runtime
using set_ini() ?



[2002-02-19 04:16:03] [EMAIL PROTECTED]

use ini_set() then



[2002-02-18 16:11:12] [EMAIL PROTECTED]

I know, but I'm not in a position to chose. I'm a customer at a hosting
company.



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/15603

-- 
Edit this bug report at http://bugs.php.net/?id=15603&edit=1




[PHP-DOC] Bug #15603 Updated: PHP output sometimes doesn't follow HTML 4.01 standards.

2002-03-20 Thread sniper

 ID:   15603
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
-Status:   No Feedback
+Status:   Bogus
 Bug Type: Documentation problem
 Operating System: Linux
 PHP Version:  4.0.5
 New Comment:

This is not a bug. There is an option with which this
can be handled. Ask your hosting company to use it.



Previous Comments:


[2002-03-20 00:00:04] [EMAIL PROTECTED]

No feedback was provided for this bug for over a month, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".



[2002-02-19 06:34:59] [EMAIL PROTECTED]

you should be able to change this setting at runtime
using set_ini() ?



[2002-02-19 04:16:03] [EMAIL PROTECTED]

use ini_set() then



[2002-02-18 16:11:12] [EMAIL PROTECTED]

I know, but I'm not in a position to chose. I'm a customer at a hosting
company.



[2002-02-18 16:04:46] [EMAIL PROTECTED]

You can change this with arg_separator.output ini directive.

>From php.ini-dist:

; The separator used in PHP generated URLs to separate arguments.
; Default is "&". 
;arg_separator.output = "&"

(you should also update to PHP 4.1.1)

Reclassified as docu prob since this is not mentioned
on the session docs. (or in the configuration part either)



--Jani




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/15603

-- 
Edit this bug report at http://bugs.php.net/?id=15603&edit=1




[PHP-DOC] functions/mysql.xml

2002-03-20 Thread Manuzhai

 
 mysql_fetch_object is similar to
 mysql_fetch_array, with one difference - an
 object is returned, instead of an array.  Indirectly, that means
 that you can only access the data by the field names, and not by
 their offsets (numbers are illegal property names).


 The optional argument result_type is a
 constant and can take the following values: MYSQL_ASSOC,
 MYSQL_NUM, and MYSQL_BOTH. See
 mysql_fetch_array for explanation
 of these constants.


Could somebody explain this?

Also, I've noted that interpunction in this module is very inconsistent...
Might need some fixing some time.

Manuzhai





[PHP-DOC] cvs: phpdoc /en/functions ftp.xml

2002-03-20 Thread Simone Cortesi

cortesi Wed Mar 20 06:50:39 2002 EDT

  Modified files:  
/phpdoc/en/functionsftp.xml 
  Log:
  typo
  
Index: phpdoc/en/functions/ftp.xml
diff -u phpdoc/en/functions/ftp.xml:1.38 phpdoc/en/functions/ftp.xml:1.39
--- phpdoc/en/functions/ftp.xml:1.38Sat Feb  2 10:35:59 2002
+++ phpdoc/en/functions/ftp.xml Wed Mar 20 06:50:38 2002
@@ -1,5 +1,5 @@
 
-
+
  
   FTP functions
   FTP
@@ -92,7 +92,7 @@
  ftp_get_option.
  
   
-   This is parameter is only available in CVS.
+   This parameter is only available in CVS.
   
  
 





[PHP-DOC] cvs: phpdoc /ro Translators

2002-03-20 Thread Adrian Jurjica

adiju   Wed Mar 20 05:12:50 2002 EDT

  Modified files:  
/phpdoc/ro  Translators 
  Log:
  no message
  
Index: phpdoc/ro/Translators
diff -u phpdoc/ro/Translators:1.7 phpdoc/ro/Translators:1.8
--- phpdoc/ro/Translators:1.7   Mon Mar 18 05:06:10 2002
+++ phpdoc/ro/Translators   Wed Mar 20 05:12:50 2002
@@ -50,7 +50,7 @@
 features/remote-files.xml  ***
 features/safe-mode.xml ***
 --- functions ---
-functions/apache.xml   ***
+functions/apache.xml   Adrian Jurjica
 functions/array.xmlAdrian Jurjica
 functions/aspell.xml   ***
 functions/bc.xml   ***
@@ -156,9 +156,9 @@
 functions/zip.xml  ***
 functions/zlib.xml ***
  language --
-language/basic-syntax.xml  cristi radulescu
-language/constants.xml cristi radulescu
-language/control-structures.xmlcristi radulescu
+language/basic-syntax.xml  Cristi Rãdulescu
+language/constants.xml Cristi Rãdulescu
+language/control-structures.xmlCristi Rãdulescu
 language/expressions.xml   ***
 language/functions.xml ***
 language/oop.xml   ***





[PHP-DOC] cvs: phpdoc /ro translation.xml

2002-03-20 Thread Adrian Jurjica

adiju   Wed Mar 20 05:10:51 2002 EDT

  Added files: 
/phpdoc/ro  translation.xml 
  Log:
  For romanian translators.
  

Index: phpdoc/ro/translation.xml
+++ phpdoc/ro/translation.xml





 
  The Romanian translation of the PHP Documentation is managed by the romanian 
contributors with a CVS user.
 

 
  
 
 
 
  
  
 







Re: [PHP-DOC] converting to docbook 4

2002-03-20 Thread Hartmut Holzgraefe

Simone Cortesi wrote:
> Hi,
> 
> today I've received from one of my translators an italian translation of 
> an XML file that I gave him before the Hartmut's switch to docbook4.
> 
> How do I automatically convert it to docbook4? I'm using cygwin.
> 
> If it is simpler, I also can give it to somebody and have it mailed back 
> to me transformed to dobook4.
> 
> thanks,
> Simone.
> 
> 

phpdoc/scripts/process.php can do the job using
phpdoc/scripts/apply/func2methodsyn.php

-- 
Hartmut Holzgraefe  [EMAIL PROTECTED]  http://www.six.de  +49-711-99091-77

Wir stellen für Sie aus auf der CeBIT 2002 und freuen uns
in Halle 6 auf Ihren Besuch am Stand H 18




[PHP-DOC] converting to docbook 4

2002-03-20 Thread Simone Cortesi

Hi,

today I've received from one of my translators an italian translation of an 
XML file that I gave him before the Hartmut's switch to docbook4.

How do I automatically convert it to docbook4? I'm using cygwin.

If it is simpler, I also can give it to somebody and have it mailed back to 
me transformed to dobook4.

thanks,
Simone.