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 :)

How to Integrate PayPal Donate Button into ASP.NET Page

Written on January 21, 2010 – 1:48 am | by admin |

I’ve recently decided to add PayPal Donate Button in the current site. The generated code for the donate button was: <form action=”https://www.paypal.com/cgi-bin/webscr” method=”post”> <input type=”hidden” name=”cmd” value=”_s-xclick” /> <input type=”hidden” name=”hosted_button_id” value=”11271506″ /> <input type=”image” src=”https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif” border=”0″ name=”submit” alt=”PayPal – The safer, easier way to pay online!” /> <img alt=”” border=”0″ src=”https://www.paypal.com/en_US/i/scr/pixel.gif” width=”1″ height=”1″ /> [...]

Where to Search for Similar Images

Written on January 20, 2010 – 12:05 am | by admin |

Recently, I had to find images for my client’s website. I found a dozen good images and I send them to my client. Unfortunately, after a week my client called me and told me he wants to know the images’ authors. I had found images and download them without saving information about their authors. I [...]

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 HTML5?

Written on January 18, 2010 – 12:59 am | by admin |

Here’s a brief article about what’s new in HTML 5: 1. New Multimedia Tags Nowadays, it’s hard to find website without some multimedia on them, that’s why it’s expected the multimedia tags to become a standard. Multimedia tags that are supported by HTML5 are video, audio and embed. The embed tag has been used by [...]

Do not use google_adtest in your ads

Written on January 17, 2010 – 3:09 am | by admin |

Very often I edit and test my website files locally. But when I open locally page with ads, it generates impressions. That’s not allowed by the Google Adsense TOS. You may search on the web about how to test ads without generating impressions and you’ll find that adding google_adtest=”on” in your ads will let you [...]

Server Side Comments in ASP.NET

Written on January 16, 2010 – 4:40 am | by admin |

Sometimes when I develop my website there’s some code in the aspx pages that I want to comment for test purpose. Other situation is when I find some bug, ex. adding comments doesn’t work, I’d comment the ‘Add New Comment Control’ while I’m fixing the bug and then it will be uncomment again. In ASP.NET [...]

Internet Explorer 9 is Coming

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

I’ve recently moved to Windows 7 and I was able to check out Internet Explorer 8, so I was very surprised when I understand that IE 9 is coming. Here’s some info what IE fans could expect by IE9: 1. HTML Standards – IE 9 will support HTML 5 standards. 2. Javascript – To closed [...]

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 [...]

Let’s Remember Windows 98

Written on January 13, 2010 – 2:16 am | by admin |

Tomorrow, I intend to install Windows 7 on my laptop. So, today is my last day using Windows XP … yes, I didn’t use Windows Vista So, I remember about 11 – 12 years ago when I’ve been installing and re-installing Windows 98 at least once a month Do you remember Internet Explorer 5 (a [...]

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: