--- Five <[EMAIL PROTECTED]> wrote:
> That did it! I wonder if there is a way, then, to have it work even if
> the variable is initialized after it is echoed.

You see, that makes no sense, and that's why no one else was able to
answer your question. Code is executed in order. Consider this:

<?php
$foo = 'one';
echo $foo;
$foo = 'two';
?>

This script will output "one", and it should. :-)

Chris

=====
Chris Shiflett - http://shiflett.org/

PHP Security - O'Reilly
     Coming Fall 2004
HTTP Developer's Handbook - Sams
     http://httphandbook.org/
PHP Community Site
     http://phpcommunity.org/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to