Categories
- agile (3)
- algorithms (17)
- css (29)
- download (3)
- featured (46)
- flex 3 (25)
- javascript (138)
- micro tutorial (202)
- PHP (108)
- portfolio (5)
- snippets (7)
- video (1)
- web development (167)
- zend framework (80)
Category Archives: PHP
JavaScript Objects Coding Style
JavaScript vs. PHP Continuing from my post about PHP arrays coding style and following the comments of that post, I’d like to write a bit about JavaScript objects’ coding style. You perhaps know that the term object is quite undefined … Continue reading
Posted in javascript, micro tutorial, PHP, web development
Tagged Associative array, C, Computer programming, Computer science, Computing, Curly bracket programming languages, javascript, JavaScript programming language, JavaScript syntax, Negation, PHP, Procedural programming languages, Scripting languages
1 Comment
PHP Functions: realpath()
Watch Out – Hard Code Perhaps every developer knows that hard coded paths are no good! The code’s good to be flexible and extensible, but what the way to achieve that? In a typically developed application you’re completely sure the … Continue reading
PHP: The Array Element Doesn’t Exist – Suppress the Warnings
What’s the problem? If you code PHP from couple of hours you are probably familiar with the following problem: 1 2 3 4 5 6 7 8 9 <?php error_reporting(E_ALL); $arr = array(); echo $arr[3]; ?> … Continue reading







