This site uses cookies. By continuing to browse the site you are agreeing to our use of cookies Find out more here
PHP
Variables & Data Types – PHP Basics
Variables are the storage of different types of information. You cannot start with a number while declaring a variable and it starts...
File Handling – PHP Advanced
File Handling is the most important part of web application. For different task you need to open and process a file.
File Create – PHP Advanced
fopen( ) function is also used to create a file. In PHP, by same function to open file, a file is also created using that...
File Upload – PHP Advanced
It’s easy to upload your files to server but with ease it comes danger so be careful when allowing file uploads.
Cookie – PHP Advanced
Its a small file that server insert on user’s computer. When the same computer requests a page with a browser, it will send cookie...
Session – PHP Advanced
It is a way to store data for users against a session ID. Web Server has no idea who you are, has no idea whether you are logged in...