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,
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,
)
{
}
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
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
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
5 matches
Mail list logo