Integrate Social App Features Into Your Website Using OpenSocial

OpenSocial is useful for websites to start hosting social applications. Apache Shindig is an OpenSocial container and helps you to start hosting these apps on your website.
OpenSocial is not just about gadgets and widgets for your Website. With it, your website can be a container or can store persistent data and publish notices/alerts called activities.

Wrapping Your Head Around HTML5 Canvas: Part 4

If you’ve made it this far in the series you should have a core understand on the basics and how all of them fit together inside of Canvas.Unfortunately for you, you’re used to my terribly dry sense of humor as well.Congratulations are in order though if you’ve stuck it out, because today we’ll be diving into some of the more advanced 2D Canvas API features.

Creating a PHP User Survey: Database Tables and Class File Constructor

User surveys can be an extremely effective marketing tool for any business web site. Visitors can make their voices heard on what products, services and information they would like the site to provide. Site owners can then adjust their marketing plans and promotions around the results of these polls.In order to build a basic user poll, we must first create the database tables that will hold the poll question and its various responses.

Create Your Own CRUD App with MySQL and PHP

CRUD simply stands for Create, Read, Update and Delete and it is the one of the fundamental principles of programming logic that can be expanded and applied to larger projects.For example, let’s imagine we’re creating a social network and we like to have the ability for users to create accounts, edit and update information for those accounts and also delete said accounts; that is CRUD at work.