Archive for the ‘Web Related’ Category
Thursday, June 26th, 2008
Using arrays in PHP can be a very powerful technique of handling data.
If you are not familiar with arrays in PHP then use simple code!
Example of simple code.
[RAW]$fruit['apples'] = 'I like apples';[/RAW]
[RAW]$fruit['oranges'] = 'I like oranges';[/RAW]
[RAW]$fruit['banana'] = 'I like bananas';[/RAW]
Example of advanced code.
[RAW]$fruit = array("apples" => 'I like apples', "oranges" ...
Posted in PHP | No Comments »
Tuesday, June 24th, 2008
Faceparty.com the social networking website, has gone on strike today against its users over people complaining about free features not being given to them - Credits to Jack Thompson for pointing this out.
Click the image below to view what the Faceparty.com homepage said
Maybe the competition of Social networking sites is ...
Posted in Web Related | 2 Comments »
Tuesday, June 24th, 2008
According to comScore, Facebook pulled in 123.9 million unique visitors in May, beating MySpace's 114.6 million. Facebook is growing at a rapid rate!
* comScore is an internet marketing research company that provides marketing data and services to many of the internet's largest businesses.
Take a look at the statistics below. (Click ...
Posted in Web Related | No Comments »
Monday, June 23rd, 2008
Some people are unaware that you don't need to use Internet Explorer to browse the internet. There are even people out there who strictly use the AOL client (web browser) because it got installed when setting up their internet connection - Dam those AOL discs.
Another thing that amazes me ...
Posted in Web Related | No Comments »
Sunday, June 22nd, 2008
How often do you search the internet to remember that PHP function, CSS declaration, mod_rewrite expression or MYSQL query syntax?
We all do it time to time, for example the date function in PHP. I am always having to look at the PHP.net manual for the formatting options of the date ...
Posted in Web Related | No Comments »