I am developing a social address book that allows users of a company to share their contacts with each other.
For example:
A large company has may Senior level positions with everyone contacting the same people, but the data is not shared or stored in a central location. So if one Manager updates the contact info, everyone [...]

read more...

I heard somewhere that “just because you can do something, it doesn’t mean you should do it.” This saying especially rings true in the world of web development. With the use of FrontPage or Microsoft word people can create a web page! The web is riddled with sites that are created using this method, but [...]

read more...

Imagine a social website that served as a portal for every bit of information available? This kind of site is being developed on http://www.theniggle.com
I can’t go into to much detail, but this site will be a solution to many problems that exist in social media today!

read more...

I have released my PHP based Addressbook that I have been working on!
To interact with it live, check it out here:
http://www.blazekwebdesign.com/apps/detail.php?id=1
Login:
Username:bwd
Password: bwd
Use this accountor create your own!
Features:

Import/Export CSV contact list
Add entry to groups
View all entries in a group
Email a group
Email an entry
Delete an entry
Edit an entry
Membership access to allow muliple users

If you want to download this application, [...]

read more...

Have you ever declared a function and wished you could get access to the variables within that function? As you may know, this is unable to happen until you make one simple declaration in that function.
function somefunction() {
     //DECLARE THIS AND MAKE YOUR VARIABLE RECOGNIZED OUTSIDE THE FUNCTION
     global $var1, $var2, $var3;
     $var1 = “This [...]

read more...