Web Development Starts Here…

Posts Tagged "PHP"

What is Removed From PHP 6?

Posted by on Nov 19, 2011 in PHP | 9 comments

What is Removed From PHP 6?

In this post I am going to show you which features are removed from major release of the PHP which is PHP 6.

These features are removed based on various reasons like security, incopatibility, performace, etc.

Read More

PHP String’s unusual behaviour

Posted by on Jan 9, 2011 in Featured, PHP | 5 comments

PHP String’s unusual behaviour

PHP have some interesting behaviour when we play with ++ operator with PHP strings. ++ incremental operator works in unusual way with PHP Strings. Guess What will php script print when you increment it like $char=’a’ and print ++$char.

Want to know the result the read this full post.

Read More

Generate PDF from html using PHP

Posted by on Oct 23, 2010 in PHP | 8 comments

Hi all, generating the PDF from PHP coding is very time consuming work. In earlier days developers were using FPDF for generating PDF from PHP code. But in now a days there are several libraries are available which can generate the PDF from the HTML you provide to them. So there is no task included like measurement and all that.

Read More

PHP coding tips for Performance Improvement

Posted by on Oct 10, 2010 in Optimization, PHP | 22 comments

This post covers most performance improvement tips related to PHP coding. While working with small website or project it’s ok to ignore these tips, but when you are dealing with large website or project which is going to maintained for long term and which have large number of user base. Developer must have to consider the below tips from the starting of the project. It will surely make drastic change in your website performance.
In PHP there are so many ways to perform the same task. Normally developers are using the way which is most comfortable for them or which they are more aware of.

Read More

Different function types in PHP

Posted by on Sep 23, 2010 in Object Oriented Programming, PHP | 5 comments

PHP have different types of function which comes into play while working with PHP.
These types are user defined function, return value functions, variable function, internal (in-built) functions, anonymous function. Follow this article for in depth explanation.

Read More