3
votes
Setting include path in PHP intermittently fails. Why?
Have you tried set_include_path()?. As a benefit this returns false on failure, allowing you to at least cat …
2
votes
Can I detect and handle MySQL Warnings with PHP?
For warnings to be "flagged" to PHP natively would require changes to the mysql/mysqli driver, which is obviously beyond the scope of this question. Instead you're going to have to basically check …
4
votes
Hidden Features of PHP?
Built in filters for parsing variables against specific predefined types - as well as covering the basics (int/float etc), extends to covering emails, urls and even if a variable is a valid regular …
4
votes
What is the best PHP MVC framework for scalability?
Frameworks I've touched
CakePHP - Certainly the most "MVC" complete framework I've used - very much Rails for PHP - you're prett …
0
votes
Log to file via PHP or log to MySQL database - which is quicker?
If this is for a database driven site, why aren't you just using the built in logging capabilities of Apache or IIS, and a suitable reporting tool such as …
7
votes
How do you write good PHP code without the use of a framework?
Really this question is quite language agnostic, as it applies to most languages where you choose to "roll your own". Two suggestions I would make would be :
Firstly, just because you aren …
7
votes
PHP Array Help
Darkey's answer is correct assuming you don't want to print array values that equal $x - but if you don't wish to print those that "contain" $x, try:
foreach ($array as $key => $ …
1
vote
PHP sessions in a load balancing cluster - how?
You don't mentioned what technology you are using for load balancing (software, hardware etc.); but in any case, the solution to your problem is to employ "sticky sessions" on the load balancer. …
10
votes
Array and foreach
foreach takes each element of the array and assigns it to the variable. To get the results I assume you are expecting you just need to do:
foreach ($posts as $post) {
echo $post …
1
vote
6
votes
What’s wrong with my HTTP redirect?
You'll want to issue a HTTP Header to redirect the client:
if ($redirect == true) {
//redirect
header("Location: http://www.mysite.com/noauth.php");
//And exit
exit;
}
…
4
votes
How to change from-address when using gmail smtp server
The short answer - you can't.
Google rewrites the From and Reply-To headers in messages you send via it's SMTP service to values which relate to your gmail account.
The SMTP featu …
0
votes
Best way to display this in a form?
As this is more about the UI of the application than anything else, I don't think there is going to be a single right answer, as it will come down to a combination of what works (which is difficult …
1
vote
How can I filter blog posts by author?
There are a few plug-ins which can do this for you - such as this one
If they don't qu …
1
vote
post_max_size and upload_max_filesize on a case by case basis
You should be able to do this via a .htaccess file. Say you want to allow 10Mb uploads for the admin area, and 2 for the public side. I'd set the default value (in php.ini) to be 2 Mb, and then in …
