this is a very simple question (so I'll get plenty of replies
in order for a xhtml page (doctype : XHTML 1.0 Transitional) to be valid, there should not be url written like that :
http://host/path?param1=12¶m2=15
..but like that :
http://host/path?param1=12&param2=15
..where the '&' character is replaced by XML entity '&'.
Ok, very well then, but how can I achieve this in Yii ? Should I always create my own CUrlManager so createUrl() would always use '&' as parameter separator (instead of default '&') ? If yes, wouldn't it be nice to set the separator has a configuration param ?
And what about CHtml::link() ? ... there is no way to define the parameter separator when it is invoked .... is there ?
Thanks for your help
ciao

Help













