Hi I am re designing a menu bar I Only have basic PHP Skills & I have no idea how to get around this $menu = "<a href=http://www.*****.com/Notre-Dame/>Notre Dame</a>"; The Space in the second Notre Dame is messing up the page how do i add a space in this instance Thanks Neale
That space shouldn't cause any trouble. However I assume you are trying to build an HTML link and therefore you are missing some quotes in the link. Since you are using double-quotes as your string delimiters you might want to change them to be single-quotes in order to not break the string: $menu = '<a href="http://www.*****.com/Notre-Dame/">Notre Dame</a>'; PHP: