PHP & Frameworks

Uploading files with PHP

Upload an image or file to your server without using your FTP. Step 1: Open a web editor, then paste…

12 years ago

PHP send email with image attachment ?

How to send Email attachment using core php email function. Here we have created a new example where you can…

12 years ago

How to use constant variable?

Once you declared constant variable you just need to include that file and use variables<?phpDEFINE('PATH','http://www.google.com');echo PATH;?>output http://www.google.com

12 years ago

How to redirect first page to another page?

Here is a simple example how to use header() function to redirect page from one page to another. <?php//Redirect page…

12 years ago

how to store and retrieve array from Session variable using php?

Here is simple code to illustrate use of session to store array that can be used in other script.<?phpsession_start();$_SESSION['type'] =…

12 years ago

How to Upload Image using PHP?

Here you can learn Upload Image and at a same time information stored into database.<?php//define a maxim size for the…

12 years ago

PHP Interview questions and Answers

Today, this article will walk you through the most commonly asked PHP interview questions and answers for freshers and experienced…

13 years ago

PHP use of array in form ?

Here is a simple example how to use array in html form element to store multiple value under single name.<html><head><title>Use…

13 years ago

How to increase max upload file size limit using HTACCESS ?

By default,most server allow max 2MB file size to upload on server.but in some case you have to change to…

13 years ago