4
votes
Are there any open source PHP-based source control scripts that have a GUI?
I'm not sure but I think you want a php-based web interface to manage source control repositories, if it's that, for SVN you have WebSVN and f …
3
votes
1
vote
What is a good PHP library to handle file uploads?
Check this example of SWFUpload, the source code is …
2
votes
3
votes
Authenticating in PHP using LDAP through Active Directory
I like the Zend_Ldap Class, you can use only this class in your project, without the Zend Framework.
…
2
votes
PHP money string conversion to integer error
If you want precision, you should store your money values using the DECIMAL data type in MySQL.
…
1
vote
A Project Euler Puzzler (specifically in PHP)
You can remove some numbers that are divided with, for example 1 is unnecessary, all natural numbers are divisible by 1.you don’t need 2 either, and therefore, all numbers are divisible by multiple …
1
vote
Possible circular dependency issue with PHP application
Maybe you can apply some pattern, like the Singleton Pattern to ensure that you only have one instance of your LogManager …
4
votes
Converting from Eclipse PDT to Vim
Vim has OmniCompletion built in, you should add this to your .vimrc:
filetype pl …
2
votes
2
votes
As a C# developer who wants to do some PHP work, what [book/online articles] should I [buy/read] to introduce myself to PHP?
For PHP books you can check this question, personally I like …
0
votes
Getting Precise Times in PHP
You can use the Pear Benchmarking package for getting timing and profiling information.
…
3
votes
Strategies for handling memory consumption in PHP5 ?
When I need to optimize resources on any script, I try always to analyze, profile and debug my code, I use xDebug, and the …
0
votes
How do I get a count of each value, based from another table?
$query = "SELECT ven.venue_name AS 'Venue', count(*) AS 'Number of venues'
FROM volunteers_2009 AS vol, venues AS ven WHERE vol.venue_id = ven.id
GROUP BY ven.venue_name" …
5
votes
