tihomir ivanov

Hi All,

I learned PHP in only 17 hours and it was absolutely enough to begin work as a PHP developer. Learn More how it can be done.

 

Honestly, I don't like asp.net, php, java, c++, javascript, ruby at all.

So, I Created My Own Powerful Programming Language for a few days.

Learn How it Can Be Done. It's really easy :)


Things You Probably Didn’t Know About PHP – Part 2

Written on January 19, 2010 – 2:30 am | by admin |

Here a new post about cool things in PHP that I found in my spare time. Here’s the list: 1. Use === and !== when you want to compare only variables with identical format, ex: $a = 1; $b = ’1′; $c = 1; $a == $b // true $a === $b // false $a [...]

What’s New in PHP 5.3.1

Written on January 14, 2010 – 1:15 am | by admin |

The PHP Development Team have recently released PHP 5.3.1. The Core 5.3 PHP engine hasn’t been changed essentially, but there are many improvements in security and stability. Security Enhancements and Fixes: ‘max_file_uploads’ INI directive added, which can be used to limit the number of file uploads per-request to 20 by default, it may prevent DoS [...]

Things You Probably Didn’t Know About PHP – Part 1

Written on January 12, 2010 – 2:39 am | by admin |

I’ve spend some time reading about cool things in PHP. I found some interesting functions and tricks. Here’s the list: 1. You can compress/decompress long strings before storing them in a database. It can be done very easy using the built-in functions: gzcompress() and gzuncompress(). They use gzip algorithm and could compress a string up [...]

Tags:

Most Popular Open Source Php-Mysql Scripts

Written on November 13, 2009 – 2:46 am | by admin |

1. Drupal Drupal is software that allows an individual or a community of users to easily publish, manage and organize a great variety of content on a website.Equipped with a powerful blend of features, Drupal supports a variety of websites ranging from personal weblogs to large community-driven websites. URL: http://drupal.org/ 2. WordPress WordPress is the [...]

Common PHP Programming Mistakes

Written on September 30, 2009 – 11:19 am | by admin |

1.Using double quotes when you want to output a basic string echo ‘it’s ok’; echo “it’s not”; When you surround a PHP string in double quotes, it is parsed by the PHP interpreter for variables & special characters, such as “n”. If you want to output a basic string, use single quotes! it’s a performance [...]

Tags:

8 Advantages of ASP.NET over PHP

Written on August 25, 2009 – 7:06 am | by admin |

1. The code-behind allows you easier to maintain the code when it comes to large websites. 2. You have the freedom of choosing from multiple languages (C#, VB.NET, C++, etc.) 3. SQL Server is also very fast, secure, and it can store extremely large amounts of data; actually, there’s no limit; 4. With ASP.NET you [...]

Tags: ,