Keep all attributes encapsulated by double quotes rather than single
PHP Code:
<?xml version="1.0" ?>
<root>
<tab title="Manage Employee's" description="You may use the Quick Search below to administer an employee.">
<content>
[ <link href='index.php?Do=UserSearch&chr=A'>A</link> | <link href='index.php?Do=UserSearch&chr=B'>B</link> | <link href='index.php?Do=UserSearch&chr=Z'>Z</link> ]
</content>
</tab>
</root>
You maybe better off with something like this though
PHP Code:
<?xml version="1.0" ?>
<root>
<tab title="Manage Employee's" description="You may use the Quick Search below to administer an employee.">
<link url="index.php?Do=UserSearch&chr=A" title="A" />
<link url="index.php?Do=UserSearch&chr=B" title="B" />
</tab>
</root>
and use xslt to handle the presentation...
Bookmarks