[PHP] R: [PHP] Using the echo tag...

2005-11-09 Thread Alan D'angelo - Media Beat Information Technology
Use: {$_SERVER['PHP_SELF']} EOF; ?> Best Regards, Alan -Messaggio originale- Da: Paul Williams [mailto:[EMAIL PROTECTED] Inviato: mercoledì 9 novembre 2005 15.45 A: [EMAIL PROTECTED] Cc: php-general@lists.php.net Oggetto: Re: [PHP] Using the echo tag... $_SERVER['PHP_SELF'] E

Re: [PHP] Private and protected variables in PHP 5?

2003-07-11 Thread Alan D'Angelo
Hello, In my PHP5 installation the first example print Poppy, but the second return Fatal error: Call to protected method dog::bark() from context '' in c:\appserv\www\test\mailingphp50.php on line 18 In my previous installation oh PHP5, private variable worked well ... PHP 5 is one beta, try with

[PHP] sqlite_seek() problem

2003-07-05 Thread Alan D'Angelo
ve before the release :) but I do not find other documentation for sqlite and PHP. Thank Alan D'Angelo

Re: [PHP] Forms and PHP_SELF

2003-07-05 Thread Alan D'Angelo
For print $PHP_SELF, or $_SERVER['PHP_SELF'] use: or the shortcur sintax: (if short_open_tag = On in php.ini) - Original Message - From: "Beauford.2005" <[EMAIL PROTECTED]> To: "PHP" <[EMAIL PROTECTED]> Sent: Sunday, July 06, 2003 1:43 AM Subject: [PHP] Forms and PHP_SELF > Hi,

Re: [PHP] Delimiter must not be alphanumeric or backslash

2003-07-05 Thread Alan D'Angelo
Try this: the pattern in preg_match() does not have correct limit :) - Original Message - From: "Gentian Hila" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 05, 2003 7:57 PM Subject: [PHP] Delimiter must not be alphanumeric or backslash hello there, I am just lea

[PHP] sqlite_seek() problem

2003-07-05 Thread Alan D'Angelo
Hello, I would want to make a question over the function sqlite_seek(), why it is giving to me of the problems. When I make a query with sqlite_query() and use sqlite_fetch_array() all works well: Example: $result = sqlite_query('SELECT * FROM test', $conn); while($row = sqlite_fetch_array($resu

[PHP] Error in doc 'Changes in PHP 5/Zend Engine 2.0?'

2003-07-01 Thread Alan D'Angelo - Media Beat Information Technology
Hello, the example of the section "Exceptions" of document http://www.php.net/zend-engine-2.php in Windows does not work: Fatal error: Call to undefined method exception::__construct() in c:\appserv\www\php5\exception.php on line 4 this works: getMessage(); } ?>