Truppe Steven wrote: > Hi again, > > i try to understand how a rendered Zend_View (.phtml) is stored inside > the response object. is the external css from the .pthml file also saved > in the response object ?
If it's external, no. When the browser sees the" <link type="text/css" rel="stylesheet"... (or @import instruction), the browser requests it seperately. If you've set up your webserver to _not_ rewrite requests for files ending in .css, then the server will deliver the stylesheet as it would an image or javascript file. Is that what you needed to know? Hope it's clear enough. -- Drew Bertola ------------------------------------------------- * PHP/LAMP Consultant, ZCE-1000 * * * * Tel: 408-966-6671 * * * * current resume: * * http://drewb.com/resume.pdf * -------------------------------------------------
