Online PHP IDE - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T20:57:37Zhttp://stackoverflow.com/feeds/question/33897http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/33897/online-php-ide4Online PHP IDEDinah2008-08-29T03:01:00Z2009-08-03T17:15:13Z
<p>Is there an IDE for PHP where you can edit the code for your pages online? Real syntax highlighting is minimal. More would be great. I'd like to be able to do development on my site at times other than when I'm not at at home.</p>
http://stackoverflow.com/questions/33897/online-php-ide/33915#339151Answer by jeremy Ruten for Online PHP IDEjeremy Ruten2008-08-29T03:20:20Z2008-08-30T06:41:22Z<p>Well my website came with <a href="http://www.cpanel.net" rel="nofollow">cPanel</a>, which has a nice file manager and code editor. It has syntax highlighting and line numbering. It runs too slow on my computer to really use but I've got a pretty slow computer. :P</p>
<p>So to get to the code editor, I'd go to cPanel at <a href="http://mysite.com:2082" rel="nofollow">http://mysite.com:2082</a>, click File Manager, then select a file and click Code Editor.</p>
<p><strong>Edit</strong>: I tried using it, and it can highlight PHP and HTML (at the same time), and it also has a "code completion" feature... I'm not sure if that's what it's called, but when you write an opening bracket or quote, it writes the closing one after the cursor. The only problems are that the highlighting isn't perfect (it treats escaped quotes as actual quotes) and more importantly, it's not free.</p>
http://stackoverflow.com/questions/33897/online-php-ide/33939#339390Answer by Jim Robert for Online PHP IDEJim Robert2008-08-29T04:03:13Z2008-08-29T04:03:13Z<p>it would be really cool if it had a frame that dynamically reloaded your site on each save (ctrl+s)</p>
<p>or even better: a separate window for dual monitor users :)</p>
http://stackoverflow.com/questions/33897/online-php-ide/33968#339680Answer by Unkwntech for Online PHP IDEUnkwntech2008-08-29T04:49:38Z2008-08-29T04:49:38Z<p>Thats an interesting idea. One could use something like this: <a href="http://code.google.com/p/syntaxhighlighter/" rel="nofollow">http://code.google.com/p/syntaxhighlighter/</a> to the syntax highlighting then it's just a matter of code completion for things like functions. That much is relatively simple, it gets harder when you get into things like per file (or even included file) variables (for the code completion).</p>
<p>And now that you have me thinking... It's to bad that I don't know javascript better.<br />
If anyone wants to get together and maybe build this idea into a viable project I'm definitely game.</p>
http://stackoverflow.com/questions/33897/online-php-ide/34850#348503Answer by Brian Warshaw for Online PHP IDEBrian Warshaw2008-08-29T17:47:54Z2008-08-29T17:47:54Z<p>See if your host supports VIM in the shell. You can SSH into your account from anywhere you can use an ssh client (you can download/run putty without admin rights). The syntax highlighting in VIM is fantastic.</p>
http://stackoverflow.com/questions/33897/online-php-ide/35716#357160Answer by Unkwntech for Online PHP IDEUnkwntech2008-08-30T05:49:09Z2008-08-30T05:49:09Z<p>@Dinah - As far as I know there is nothing like that now, but I am defiantly thinking about building it if i can find someone to help me out with it.</p>
<p>EDIT: There are web based HTML WISIWYG editors, but I have not seen (nor found) anything for PHP.</p>
http://stackoverflow.com/questions/33897/online-php-ide/41084#410843Answer by ejunker for Online PHP IDEejunker2008-09-03T02:34:38Z2008-09-03T02:34:38Z<p>Try one of these:</p>
<ul>
<li><a href="http://www.april-child.com/amy/website/" rel="nofollow">Amy Editor</a></li>
<li><a href="http://heroku.com/" rel="nofollow">Heroku</a></li>
<li><a href="http://codepress.org/" rel="nofollow">CodePress</a></li>
</ul>
http://stackoverflow.com/questions/33897/online-php-ide/344644#3446440Answer by Robert for Online PHP IDERobert2008-12-05T17:49:47Z2008-12-05T17:49:47Z<p>I second: <a href="http://www.cdolivet.net/editarea/" rel="nofollow">EditArea</a></p>
http://stackoverflow.com/questions/33897/online-php-ide/453273#4532731Answer by Ivan for Online PHP IDEIvan2009-01-17T12:52:52Z2009-01-17T12:52:52Z<p>I created this <a href="http://www.phpanywhere.net" rel="nofollow">online php editor</a></p>
<p>Tell me what you think.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/33897/online-php-ide/931646#9316464Answer by Ivan for Online PHP IDEIvan2009-05-31T08:31:42Z2009-05-31T15:34:51Z<p>try <strong><a href="http://www.phpanywhere.net" rel="nofollow">http://www.phpanywhere.net</a></strong> it should be exactly what you are looking for.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/33897/online-php-ide/931671#9316710Answer by Kris for Online PHP IDEKris2009-05-31T08:53:15Z2009-05-31T08:53:15Z<p>I don't know what your websites audience is, but generally I think it's a bad idea to edit a live website. Much too easy to accidentally break something, or worse <code>print_f</code> your passwords or other secrets by accident.</p>
<p>I run my server from home so this will not be available to everyone but this is basically what I dp:</p>
<ol>
<li>have <a href="http://en.wikipedia.org/wiki/Secure%5FShell" rel="nofollow">ssh</a> and <a href="http://subversion.tigris.org/" rel="nofollow">svn</a> on the server</li>
<li>the same <a href="http://httpd.apache.org/" rel="nofollow">apache</a>, <a href="http://www.php.net/" rel="nofollow">php</a> (<a href="http://www.entropy.ch/software/macosx/php/" rel="nofollow">i get my binary here</a>) and <a href="http://www.netbeans.org/" rel="nofollow">mysql</a> on the server and the laptop</li>
<li>develop on the laptop using <a href="http://www.netbeans.org/" rel="nofollow">netbeans</a></li>
<li>when happy with changes, do an svn export of the project and <a href="http://www.eos.ncsu.edu/remoteaccess/man/scp.html" rel="nofollow">scp</a> it to the server.</li>
</ol>
http://stackoverflow.com/questions/33897/online-php-ide/939670#9396702Answer by Coder for Online PHP IDECoder2009-06-02T13:49:15Z2009-06-02T13:49:15Z<p>May be this could help you to execute sample php code and see output </p>
<p><a href="http://codepad.org" rel="nofollow">http://codepad.org</a></p>
http://stackoverflow.com/questions/33897/online-php-ide/1029569#10295691Answer by unknown (google) for Online PHP IDEunknown (google)2009-06-22T21:48:04Z2009-06-22T21:48:04Z<p>Check out <a href="http://www.coderun.com" rel="nofollow">http://www.coderun.com</a></p>
http://stackoverflow.com/questions/33897/online-php-ide/1223492#12234920Answer by rolfen for Online PHP IDErolfen2009-08-03T17:15:13Z2009-08-03T17:15:13Z<p>Etherpad is cool to code collectively but it has no syntax highlighting and is not realy an IDE, just a collaborative pad for programmers with versioning and chat features.
Still pretty cool but not what youre looking for.</p>