> I'm currently just beginning to learn PHP and it appears that
> BBEdit added code that conflicts.
The problem isn't the <?xml version="1.0"?>, AFAIK that is good
style and you might want to keep it.
PHP has a "feature" called "short open tags" that lets you be lazy
and use <? instead of <?php to open a block of PHP code. I recommend
turning this off. In your php.ini file, find the line like this:
short_open_tag = On
and change the "On" to "Off" (no quotes). In addition, you'll want
to make sure that setting is set correctly on your server. If you're
using a shared server where you can't control the php.ini, add the
following line to a .htaccess file in your site's root directory:
php_flag short_open_tag off
Hope you enjoy learning and using PHP.
--
Jeremy Weathers
People who count their chickens before they are hatched
act very wisely, because chickens run about so absurdly
that it is impossible to count them accurately.
- Oscar Wilde
--
------------------------------------------------------------------
Have a feature request? Not sure the software's working correctly?
If so, please send mail to <[EMAIL PROTECTED]>, not to the list.
List FAQ: <http://www.barebones.com/support/lists/bbedit_talk.shtml>
List archives: <http://www.listsearch.com/BBEditTalk.lasso>
To unsubscribe, send mail to: <[EMAIL PROTECTED]>