gerkintrigg Posted July 11, 2013 Share Posted July 11, 2013 I hope this is considered on topic. I currently use the Rockmelt web browser. If you have never heard of it, then you missed a great moment in the web because the Rockmelt browser will be switched off at the end of July. So I was wondering which browser do you use for day to day web programming? I've used Firefox and chrome before, but rock melt thrashed them all. It'll be horrible going down to something that's "okay", but it's time for a battle of the browsers. What do you all think? Neil Quote Link to comment https://forums.phpfreaks.com/topic/280057-best-browser-for-php-developers/ Share on other sites More sharing options...
web_craftsman Posted July 11, 2013 Share Posted July 11, 2013 If you have never heard of it I have never heard about it And I always thought that php runs on the Server, not in the browser. Quote Link to comment https://forums.phpfreaks.com/topic/280057-best-browser-for-php-developers/#findComment-1440276 Share on other sites More sharing options...
cyberRobot Posted July 11, 2013 Share Posted July 11, 2013 (edited) Like Flock, I found Rockmelt distracting. Social networking based browsers probably just aren't for me...too many shiny things. As for your question, the browser doesn't really matter when it comes to PHP. Testing the results from a PHP script is another story. How each browser interprets code like HTML, CSS, JavaScript is what needs monitoring. Do you use a solution like Google Analytics? This should let you know which browsers your customers use. From there, you can judge which browsers to test with. Edited July 11, 2013 by cyberRobot Quote Link to comment https://forums.phpfreaks.com/topic/280057-best-browser-for-php-developers/#findComment-1440305 Share on other sites More sharing options...
Irate Posted July 11, 2013 Share Posted July 11, 2013 PHP isn't a matter of browser as cyberRobot already said above. It's about client side you have to worry, PHP will always output the same data for all browsers. JavaScript, CSS and most parts of the HTML5 specification are what you have to supervise, and you always dynamically compute what CSS/JS to output with some $_SERVER sniffing (this is inaccurate, however, as the $_SERVER vars can mostly be changed), a more reliable feature is content sniffing, check which features the browser supports and then adjust the way data is displayed and what functions you can use, but that's mostly done client side. If this is a browser discussion, then Firefox gets my vote for most precisely built browser as it is built by the Mozilla Foundation which has the creator of JavaScript as CTO, so that you can most likely always count on non-standard as well as ECMAScript 5 standards being implemented. It's just that you can program in JavaScript more freely, seing as you needn't worry about every single thing. But that's just my opinion. Quote Link to comment https://forums.phpfreaks.com/topic/280057-best-browser-for-php-developers/#findComment-1440307 Share on other sites More sharing options...
.josh Posted July 14, 2013 Share Posted July 14, 2013 If you are only developing for one browser then you're doing it wrong. Your code should work in all browsers, or at least the ones that your target audience uses (which is where things like Google Analytics come into play). Quote Link to comment https://forums.phpfreaks.com/topic/280057-best-browser-for-php-developers/#findComment-1440710 Share on other sites More sharing options...
Adam Posted July 14, 2013 Share Posted July 14, 2013 PHP developers quite often work with HTML/CSS and JavaScript though, and I will say that I find Chrome far better than any other for debugging and inspecting that. Quote Link to comment https://forums.phpfreaks.com/topic/280057-best-browser-for-php-developers/#findComment-1440723 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.