Howdy folks, As I promised to you, I’m back with PHP MySQL Login System with Remember Me, Online Status, Forgot Password & User Profile option. This tutorial is much advanced than the previous one and it is a extension of that. If you are a beginner, then you should start reading with the previous article… [Read More]
How to Upload and Validate Files using PHP
Howdy coders, In this post, I’m going to show you how to upload and validate files using PHP. At first we’ll need a simple HTML form with an input type=”file”, then we’ll catch the uploaded file from PHP using $_FILES[“file”]. Then we’ll validate it by extension, mime-type and file size; then process it further.
PHP MySQL Login System – A Super Simple Tutorial
Hello everyone, In this post we are going to create a very simple PHP MySQL login system. At the beginning, we will show a registration form to users and store user given data into MySQL database. Then we will create a login page where we take username and password and let users logged in if… [Read More]
Mobile UA (User Agent) Detection Function in PHP
This is a simple PHP function to detect Mobile UA (User Agent). You can uncomment line 24 and line 28 to get which user agents got caught by this function. Returned values are ‘mobile’ if UA is mobile and ‘computer’ if not mobile.
How to Pass Variable from PHP to JavaScript & JavaScript to PHP
In this tutorial, I will show you how to pass a variable from PHP to JavaScript and JavaScript to PHP. It means you will be able to exchange variables between server side and client side.
How to Determine, Check & Modify File Permission with PHP
In this post, you will learn what is file permission, how it works, how to modify file permission, check file permission, symbolic and octal notation of file permission and more… I’ll also provide you a FREE File Permission Changer tool, written in PHP – by me.