[WSG] CSS and PHP

2005-11-14 Thread designer
H All, I've been having a little bother with validation of my PHP generated pages. I'm new to PHP/mySQL and I'm finding that some peculiar things happen, such as /body and /html appear in the middle of the code. (???) Also, I find that submitting a URL such as:

Re: [WSG] CSS and PHP

2005-11-14 Thread The Visual Process
I'm not clued up on php or mySQL but if you use amersands then you need to display it as such amp; otherwise it wont validate. designer wrote: H All, I've been having a little bother with validation of my PHP generated pages. I'm new to PHP/mySQL and I'm finding that some peculiar

RE: [WSG] CSS and PHP

2005-11-14 Thread Patrick Lauke
designer I'm new to PHP/mySQL and I'm finding that some peculiar things happen, such as /body and /html appear in the middle of the code. Difficult to know without seeing a URL and the associated PHP code. Sound like an error in the PHP to me, though...

Re: [WSG] CSS and PHP

2005-11-14 Thread Tim Burgan
Just a quick note that'll help: In the URL, the special characters (such as ampersands, question marks, etc) need to be converted to html character entities. You can find entity codes from: http://www.ascii.cl/htmlcodes.htm For example: ampersand can be #38; or amp; question mark is #63;

Re: [WSG] CSS and PHP

2005-11-14 Thread Lea de Groot
On Mon, 14 Nov 2005 12:09:42 +, designer wrote: I've been having a little bother with validation of my PHP generated pages. I'm new to PHP/mySQL and I'm finding that some peculiar things happen, such as /body and /html appear in the middle of the code. (???) Also, I find that

Re: [WSG] CSS and PHP

2005-11-14 Thread Bert Doorn
Tim Burgan wrote: Just a quick note that'll help: In the URL, the special characters (such as ampersands, question marks, etc) need to be converted to html character entities. Question marks do not need to be converted. Regards -- Bert Doorn, Better Web Design

Re: [WSG] CSS and PHP

2005-11-14 Thread designer
Thank you Gentlemen, Very helpful as always! (I mean it!) -- Best Regards, Bob McClelland Cornwall (UK) www.gwelanmor-internet.co.uk ** The discussion list for http://webstandardsgroup.org/ See

Re: [WSG] CSS and PHP

2005-11-14 Thread Katrina
designer wrote: H All, I've been having a little bother with validation of my PHP generated pages. I'm new to PHP/mySQL and I'm finding that some peculiar things happen, such as /body and /html appear in the middle of the code. (???) Also, I find that submitting a URL such as:

Re: [WSG] CSS and PHP

2005-11-14 Thread Alan Trick
Another issue: this may be caused by ussing sessions. When PHP manages sessions using GET queries as opposed to Cookies it might do this to your. What it does is appends PHPSESSION=w/e to the end of your urls, by default the is *not* escaped. There's a way (in php.ini I think) to fix it. Check

Re: [WSG] CSS and PHP

2005-11-14 Thread James Ellis
Hi This has been discussed on the list before but the quick answer to URL's generated by PHP automatically (like its session handler) is to use ini_set(arg_separator.output, amp;);See : http://php.mirrors.ilisys.com.au/manual/en/ini.core.php#ini.arg-separator.outputIf you generate URL's