[PHP-DOC] bug submission (fwd) From: Rasmus Lerdorf (rasmus <email protected>)
Date: 10/15/00

---------- Forwarded message ----------
Date: Sun, 15 Oct 2000 18:01:17 +0200
From: Sreng Truong <sreng.truong <email protected>>
To: webmaster <email protected>
Subject: bug submission

Hello,

there is a little bug in a code example in your online manual.

At the page : http://www.php.net/manual/debugger.php
you should replace in the Perl script example

my $proto = getprotobyname(`tcp`);

by

my $proto = getprotobyname('tcp');

The difference is just between backquote and quote.

Regards,
Sreng.