not so dynamic pages
hellodoes anyone know how can I insert a dynamic content on a site consuming the minimum resources possible?
the site is static HTML and has around 20000 hits/day, so I don't want to convert it to .php or .pl just to put a little thing... that would consume a lot of resource
what i want to ad doesn't depends on the user... i can explain that it is a "static for users, dynamic on time"
hehe...
it's like a google adwords... it may change everyday, but doesn't mind who is accessing it...
so i've think about:
1) using SSI (it's probably faster than php or cgi) to include another HTML on this one - advantage: doesn't depends on users browser / disadvantage: consume more resources than 2:
2) using iframes - advantage: almost doesn't consume resource / disadvantage: depends on users browser
do you recommend any other way?
now I just saw that google uses JavaScript
so since we'd be opting to depends on browser, what's more compatible? JavaScript or iframes?
thanks