n the last piece on our PHP online user poll, we look at the administrative service and how the site supervisor enters, deletes and manages the poll data.The first poll administrative page checks if the administrator is logged in. You can choose from Session variables or Cookies to check the site administrator login status.Once the application has confirmed the identity of the site administrator, the page lists the available polls.
Tag: work
Wrapping Your Head Around Canvas: Part 5
The WebGL portion of Canvas isn’t so much a fringe as an add on to Canvas. Since we’ve been working in the 2D API over the course of this series, we can now move on to working with 3D.Much like it’s 2D counterpart, WebGL portions of the Canvas API are still in their infancy ,in my opinion, which leaves a lot of room for improvement. Then again what technology really ever starts out at the top of its game?
Designing a Clean Website: Navigation
There is one design style that can withstand the fluctuating trends that come and go in the design world, and that is to have a clean, simple, minimalist site.Think of sites like Apple, Amazon, and The New York Times. One thing you will notice that they all have in common is perfectly executed use of white space. However, there are some very subtle guidelines to follow or tips that you should consider when designing your own clean website.
Illustration Showcase of Gifted Artist Kristian Duffy
Today, we’re delighted to showcase to you the work of super-talented animator and illustrator Kristian Duffy.
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.