ArchivesPosts Tagged ‘Tutorial’

01Mar

First off before we start, here are a couple of things you will need to get started: 1. Mac running the latest version of xcode – This can be found on your install disc for leopard or snow leopard. 2. Latest version of the iphone SDK – This can be found at developer.apple.com Now we Continue Reading

13Dec

Using a little knowledge of PHP and HTML you can build a simple log in system for your site. In order to correctly follow this tutorial you may want to have a good idea of basic HTML/PHP syntax as well as knowing some CSS. You should also have a basic understanding of how to create and use sessions($_SESSIONS) in PHP.Continue Reading

09Dec

Cookies and Sessions are extremely useful to a PHP programmer, however they could be considerably confusing to a beginner. Cookies and sessions are used to store pieces of information for a period of time until it is destroyed. This information inside of a cookie or a session can be used to store things like log in information, URL information and much much more.Continue Reading

31Oct

Often when writing JQuery code(especially for plugins) there are times when you need to execute the same block of code multiple times. Instead of writing them all out individually and making our code really terrible process wise, we can use functions and function calls to call the same block of code over and over.Continue Reading