Home » How - To / Tutorial » Archive by category "Programming" (Page 2)

NSTimer in Swift

UI Label Swift

Our aim is to create a counter application, and it will make use of the Swift NSTimer class. This class can be used to create a timer in iOS 8 applications. It functions by waiting for a specific interval of time to elapse so that...

Simple Way to Connect Swift to PHP Code

Swift Programming

It is possible to use Swift to send some post request to a PHP script. This happens on a server. If you connect your Swift app to a PHP web service, you will achieve functionalities such as querying the database and even registering the users....

Enumerations in Swift Programming

Swift Programming

If you want to define a common type for a group of items or values which are related, then enumeration will help you to do so. It supports some of the features which were traditionally supported by classes only. These features include instance methods and...

How to Create iOS Swift “Hello World” Program

Finished Hello World iOS App

Swift is the new programming language introduced by Apple to slowly replace Objective- C. It offers advanced features which are not available in the Objective-C programming language. In Swift, programmers can combine Objective-C++, Objective-C, and Swift in just a single program so as to take...

Manage Large CSS Projects With ITCSS

Manage Large CSS Projects With ITCSS

CSS architecture seems to be somewhat in vogue right now. It’s something you’ve no doubt heard mentioned numerous times over the past year or so, and with good reason: UIs (and the teams that build them) are getting bigger and more complicated than ever before....

Encoding Decoding Data Using PHP

Encoding is a process of converting data from one to another form.  Encoding data so that it cannot be easily read is one of the key tenets of security. A good secure system not only takes measure to prevent data from being exposed but also ensure...

Integrating User Authentication Using PHP

User Authentication

Authentication is any process to verify that someone is who they claim they are. PHP is well suited programming language for User Authentication. Integrating User Authentication using PHP in website application you will usually find a MySQL database behind it. Authentication system most likely include...

Multitasking PHP and MySQL

Using Gearman

How often have you developed a website that using an external program or even a separated process? This case is not a common problem for website application because you want to make it run efficiently and fast as possible, Yet you need to provide crucial...