• php

    Proposal for a new Array Syntax in PHP

    by  • January 13, 2008 • news, php, programming • 0 Comments

    A new array syntax has been proposed (for quite some time) for defining arrays in PHP. Currently, we use array() construct to create an array. Some examples could be: $myArray = array(1, 2, 3, 4, 5); $yourArray = array(1 => “one”, 2 => “two”, “three”); $herArray = array(1, 2, 3, array(4 => “four”, “five”)); The [...]

    Read more →

    Apache Headache: “no listening sockets available”

    by  • August 8, 2007 • apache, bug, education, guide, humour, life, microsoft, mysql, php • 5 Comments

    Update 1: I was unable to configure MySQL. Reason: It was installed in C:\(blah-blah) and , probably, do not have write rights in the directory. Installing it to D:\(bigBlah) solved the issue. Duh! Update 2: I see a fairly good traffic coming here searching for the same problem. So, in case you are in a hurry, [...]

    Read more →

    Apache-MySQLPHP Installation & Configuration Tutorial for Beginners :)

    by  • February 25, 2006 • apache, education, guide, mysql, php • 0 Comments

    Hi, This article is a very “narrow” tutorial aimed for complete beginners and dummies, who want to start off coding with AMP (Apache-MySQL-PHP) but do not want to read manual for installing and configuring them. This write up is very specifically targeted and applies for Windows platform. Note: To get the real and complete understanding, [...]

    Read more →