I get this message:

Parse error: syntax error, unexpected T_STRING in /home/lbnh02/public_html/cms/index.php on line 2

1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<?xml version="1.0" encoding="iso-8859-1"?>
3<html xmlns="http://www.w3.org/1999/xhtml">

The <? in your XML looks like PHP to the PHP parser. You have two choices:

1) turn off short tags

2) change line 2 to be: echo '<?xml version="1.0" encoding="iso-8859-1"?>';

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.