battlebot Posted February 9, 2009 Share Posted February 9, 2009 Hi all! Im using server side javascript to move a small gif image around at random on our site login page but it seems like it slows down client browsers a bit. Can i do the same thing using PHP and would it use less client cpu power? You can see the floating image here: http://www.ghostadventures.net Thanks Link to comment https://forums.phpfreaks.com/topic/144477-replace-javascript-with-php/ Share on other sites More sharing options...
DeanWhitehouse Posted February 9, 2009 Share Posted February 9, 2009 Not with PHP alone, try looking at ajax, or maybe a css based alternative Link to comment https://forums.phpfreaks.com/topic/144477-replace-javascript-with-php/#findComment-758095 Share on other sites More sharing options...
printf Posted February 9, 2009 Share Posted February 9, 2009 PHP is a server side application, so it cannot help make a client side applications faster. The only option you have is to place the JavaScript you currently have on your page in a file and include it in your page. That way most clients will cache the file localy, which will speed up the page loading process. Link to comment https://forums.phpfreaks.com/topic/144477-replace-javascript-with-php/#findComment-758097 Share on other sites More sharing options...
battlebot Posted February 9, 2009 Author Share Posted February 9, 2009 Ok thanks for the response. I didn't think it could be done but thought i would check anyway. Link to comment https://forums.phpfreaks.com/topic/144477-replace-javascript-with-php/#findComment-758104 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.