Home » Posts tagged "PHP"

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....

Handling with Objects and Classes in PHP

Handling Class In PHP

Creating a class statement You write the class statement to define the properties and methods for the class. The class statement has the following general format: [crayon-5c97479a7dac4500231016/] You can use any sort of valid PHP identifier for the class name, except stdClass. PHP uses the...

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...

Improve Website Performance Through Caching

Improve Website Performance Using Cache

Cache is a component that stores data for future requests, so it can be served faster. If requested data is contained in cache, this request can be done by just reading the cache, no need to process it from beginning which is comparatively faster. A...