Tutorials » PHP

Solve MySQL extension is deprecated & will be removed in the future of PHP
After a long discussion inside the PHP developers team they decided to mark the old mysql_* functions deprecated in PHP 5.5. In this short tutorial you will get a instruction how to solve this error message. Why was mysql deprecated in PHP 5.5? Johannes Schlüter, one of the PHP developers listed missing points like these:Stored ProceduresPrepared Statements(SSL-)EncryptionCompressionFull charset support How…
View whole tutorial »
Sharp images with GD
Unfortunately PHP has no built-in function like so we have to help ourselve to get such a function which could sharp images which are created or loaded with GD (Graphics Draw) in PHP. You could use that sharpening if you resize images, rotate them or create thumbnail views of images. Example
View whole tutorial »