RE: [PHP] Use

2001-01-13 Thread mOrP
Can someone point me to the documentation of ' -Original Message- > From: Arcady Genkin [mailto:[EMAIL PROTECTED]] > Sent: Saturday, January 13, 2001 8:48 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Use > > I have noticed that in documentation, how safe is it to use it? > > Many thanks,

[PHP] debugging php

2001-01-14 Thread mOrP
shown below: Fatal error: Call to undefined function: debugger_on() in index.php on line 2 ... and the manual says, that the debugger is still under development. does anyone know, how to debug php-scripts? thanx for your help, mOrP -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] Two little questions

2001-01-14 Thread mOrP
) { } which makes it easy to read. You can put anything you want inside a function, but you must know, that you cannot directly access a variable, that is defined outside the function. $name = "mOrP"; function print_name() { echo $name; } print_name(); will

RE: [PHP] Two little questions

2001-01-14 Thread mOrP
that it is not good to use the 'global' keyword, because you must know the name of the variable, you use. Look: $name_1 = "Jan"; $name_2 = "Fritz"; function print_name($name_arg) { echo $name_arg; } print_name($name_1); print_name($name_2); You see, ho

RE: [PHP] Database Connections - permanent or something else?

2001-01-16 Thread mOrP
There's one thing, that I don't understand about permanent connections. When will they be closed? I could use a logout-page, but there is no garanty for the use of it. Any explanation would be appreciated. mOrP > -Original Message- > From: Ignacio Vazquez-Abram