Only that you can embed vars in the second one.

if $foo='bar';

include('somefile_{$foo}');
will include the file 'somefile{$foo}', where

include("somefile_{$foo}");
will include the file 'somefile_bar'

HTH.

Charles Kline wrote:
What is the difference as in... why one or the other?

include('somefile.php');

include("somefile.php");

Just wondering...

- ck





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



Reply via email to