David McGlone wrote:

> Hi Everyone, I'm having a problem validating some links I have in a
> foreach. Here is my code:
>  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd";>
> 
> my PHP code:
> $categorys = array('home', 'services', 'gallery', 'about_us',
> 'contact_us', 'testimonials');
> foreach($categorys as $category){
> $replace = str_replace("_", " ", $category);
> echo "<li><a href='index.php?page=$category'>$replace</a></li>";
> }
> 
> Validator Error:
> an attribute value must be a literal unless it contains only name
> characters
> 
> ?ome>home</a></li><li><a
> href=index.php?page=services>services</a></li><li><a h?
> 
> I have tried various combinatons and different doctypes. I'm beginning to
> wonder if this code is allowed at all.
> 
> 

In this tag you aren't getting the href value enclosed in quotes which I
suspect would trigger the validator error.

<a href=index.php?page=services>



Cheers
-- 
David Robley

"I'll take that," said Tom appropriately.
Today is Boomtime, the 12nd day of Chaos in the YOLD 3177. 


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

Reply via email to