0
votes
How do I rotate an image at 12 midnight every day?
That depends on how you are rotating them - sequentially, randomly, or what?
There are a number of options. You can determine which image you want in PHP, and dynamically change your …
1
vote
Flip an Image horizontally
Shouldn't this:
imagecolortransparent($img, imagecolorallocate($img, 0, 0, 0));
imagealphablending($img, false);
imagesavealpha($img, true);
...be this:
…
8
votes
Php error_reporting, Best setting for development? E_STRICT ?
In PHP 5, the things covered by E_STRICT are not covered by E_ALL, so to get the most information, you need to combine them:
error_reporting(E_ALL | E_STRICT);
In …
0
votes
How to secure database passwords in PHP?
If you are using PostgreSQL, then it looks in ~/.pgpass for passwords automatically. See the …
2
votes
PHP unserialize keeps throwing same error over 100 times part 2
Usually, when you get an error message, you can figure out a great deal by simply searching the web for that very message. For example, when you put …
2
votes
Automatic newlines and formatting for blogging software
Replace \n\n with </p><p> and then replace \n with <br>.
PS: Pirate day was last week :).
…
