Changing from php to ajax/javascript?! Programming Web Development by adishardis Hi, So far in me slowly learning webdevelopement (mostly thanks to all of you guys) I've used … Re: deployement error Programming Software Development by musthafa.aj please post your error... and you developing web application..so that you post this on webdevelopement/jsp.... Re: Random link script Programming Web Development by smackthat9876 … can be done in PHP and this is the PHP/Webdevelopement area on Daniweb so .. you sir are an as Re: filter array for select list Programming Web Development by adishardis … you for all your help and sparking my interest in webdevelopement I'm actually thinking of taking an evening course learning… Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by Shanti C Hello daniweb, I think daniweb recently changed to new urls (forum name instead of forum number). But in my working area web development key word hanged by firewall and will not allow me to access the page. Every thing else is fine for me. This happened for me since yesterday. So, now onwards i can not access web development forums which i use to … Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by AndreRet Dani is busy tweaking the site and she is also changing the entire sites URL. There were quite a few hickups, but its getting solved as we go. Have a look at [URL="http://www.daniweb.com/community-center/daniweb-community-feedback/threads/350652"]THIS[/URL] post where most of the hassles is being discussed. You can add your question … Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by Dani I'm confused by what you mean that you can't browse Web Development. What happens when you click on Web Development in the top navigation menu? What do you mean by 'hanged by firewall'?? Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by Shanti C [QUOTE]I'm confused by what you mean that you can't browse Web Development. What happens when you click on Web Development in the top navigation menu? What do you mean by 'hanged by firewall'?? [/QUOTE] Dani, thanks for your reply. Please check the attached image.. That is what i am getting when i click on the web development forums. Remaining … Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by AndreRet I have tried it on my side and it is working fine, although I am using Chrome and not IE... Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by AndreRet Also just tried IE 7 , working fine.:) Firefox, Opera also fine. Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by Shanti C Thanks AndreRet, I think it is not the problem with browser. It is because , in my working area, management don't allow us to browse some sites. For this reason: they have restricted some sites and keywords. "Web Development" is one of the key word which they have restricted by some settings. If the keyword is present in the URL, then … Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by AndreRet The only solution then would be to contact your administrators and ask them to pass it. It's a simple setting, which can be done in 5 minutes.:) Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by Shanti C hmmm. but it can not be done for some reasons.. Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by Dani It's odd that "web development" would be a word for them to block. What does your company do? Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by Nick Evan Amish & Co. Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by Dani Huh?? Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by AndreRet I also thought so, huh? Maybe they do not believe in technology, blocking all "web dev" site url's.;) Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by WaltP The [url=http://en.wikipedia.org/wiki/Amish]Amish[/url] -- no phones, no modern conveniences.... You know, the buggy drivers. Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by AndreRet With horses in front, you see. Web Development means they have to improve on their farming skills in a spidery fashion of planting and distribution of said farmed products.;) I'm probably gonna get knocked over the head, but hey, such is life.:) Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by Shanti C Any way i am leaving this forum. Hope for future.. Re: Missing Daniweb Webdevelopement Forums Community Center Meta DaniWeb by ~s.o.s~ I'm not sure why you think it won't be a good idea to request the sys admins for setting things straight. It's not as if you are asking for a permission to unblock youtube or gmail. Plus, the filter is obviously broken; it allows you to browse some parts of the site but not others like Web Development. You can always give the reason that this site… Re: Changing from php to ajax/javascript?! Programming Web Development by stbuchok You could load everything into a JavaScript object (or array of javascript objects, whatever), however you need to know how much data that is. Making a webservice call is not that bad and if it is a lot of data to go through, the server will probably handle it better. You really haven't given enough information to make a decission as to what you … Re: Changing from php to ajax/javascript?! Programming Web Development by adishardis Hi, The table in question holds about 37 000 rows and is updated daily with about 7 new rows daily. The user would probably query the data 6-8 times and there is no sensitive data to worry about. To me it sounds like using a javascript object could get the work done? Base on my added info above, would you still say it's an option? Kindly Adam Re: Changing from php to ajax/javascript?! Programming Web Development by stbuchok If you are going to be returning 37000 records, I'd do all the calculations on the server side. Server side languages have more functionality to do calculations and will probably be easier to write, maintain and speed should be quicker. Just my 2 cents. Re: Changing from php to ajax/javascript?! Programming Web Development by adishardis Thanks for your input!! I'll keep it serverside for now :)