Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a software which can beautify both PHP and HTML code.
Dreamweaver seems to do a good job with html but not PHP
PHP designer does a good job with PHP but messes up HTML.
Any suggestions guys ?
Eclipse with setted up by you formatting rules. Both HTML and PHP formatter. And it's free.
You could always use the built in highlight-string function. Not sure if it does a particularly good job, but it's by far the easiest option.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
For my next project I want to have small issue tracker like this on github (in php and mysql/sqlite), do I need to write it from scratch or is there something like this already (open source)?
If you want work without code you can try one of these:
http://vermis.hellworx.com/ (Open source)
http://www.mantisbt.org/
There is MantisBT which uses PHP and MySQL but it's not exactly small.
Which functionality do you need?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I would like to know if there is a plugin for netbeans that would make it easy for me to edit html and build simple temp pages while coding so I can place things in the right place on my page etc..
If there isn't a plugin is there any lightweight HTML webpage editor I could use?
I also don't mind buying..
Lightweight HTML Editor? :O
Try http://brandonsoft.com/htmlide/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Does anyone know of a good tool for cleaning up/formatting PHP files? I'd need something that can handle HTML with < ?php ?> tags, as well as pure PHP files. Ideally, I'd like a Maven mojo, since the rest of my code is being generated by Maven already.
Haven't worked with php for a while now, but I remembered using PHP Beautifier
I haven't really found any completely satisfactory solution yet, but I'm comparing several options, now. I'll be documenting my progress on my blog, if anyone's interested in the future.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking to some lightweight open source php based MySQL database managing script.
I would essentially prefer something that is packed into a single file, and has a decent UI and features.
PS: I already know about PHPMiniAdmin, I'm looking for alternatives.
SQLBuddy is pretty nice: http://www.sqlbuddy.com/
You need PHP-Mini-Admin
It is a light-weight alternative to
phpmyadmin
Source
phpmyadmin is still my favourite
http://www.phpmyadmin.net
C.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there a library which allows PHP to decode application/fastinfoset binary XML?
As far as I know, there's no PHP-library that does this. Can you hack around this by creating a tiny java-program that decodes/transforms the FI and call this from PHP?
I know this is a less-than-ideal solution, but this does seem to be uncharted territory.
https://fi.dev.java.net/how-to-use.html has some java-examples on how to handle FI.
As for bridging PHP and Java;
http://sourceforge.net/projects/php-java-bridge is supposedly good (though, site is down when I try),
http://www.php.net/manual/en/book.java.php also have som information on integrating Java and PHP.
Alternatively, you can use probably use webservice or messaging to communicate between PHP and Java. (This is probably obvious.)