Posts

Showing posts from 2018

Multiple Images Uploads Step by Step

?   1 < input type = "file" name = "image[]" id = "form-field-2" placeholder = "Select News Image For Uploading" class = "col-xs-10 col-sm-5" required multiple = "multiple" />     <input type="file" name="image[]" id="form-field-2" placeholder="Select News Image For Uploading" class="col-xs-10 col-sm-5" required multiple="multiple" /> ?   01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 <?php          include "connection.php" ; // include your database connection file                                             if (isset( $_POST [ 'submit' ]))              {                      extract( $_POST );                      $i =0;                                                            $total = c

Uploads Only 10 files in month step by step

?   01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 <?php        $con = mysqli_connect( "localhost" , "root" , "" , "demo" );   date_default_timezone_set( 'Asia/Kolkata' );        $date = Date ( "Y-m-d" );                  if (isset( $_POST [ 'submit' ]))      {          extract( $_POST );            $name1 = $_FILES [ 'photo' ][ 'name' ];    $type = $_FILES [ 'photo' ][ 'type' ];    $size = $_FILES [ 'photo' ][ 'size' ];    $temp = $_FILES [ 'photo' ][ 'tmp_name' ];    if ( $name1 ){   $upload = "posts/" ;              $imgExt = strtolower ( pathinfo ( $name1 , PATHINFO_EXTENSION));              $valid_ext = array ( 'jpg' , 'png' , 'jpeg' );

How to Delete record using PHP Ajax

index.php ?   01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 <!DOCTYPE html> <html> <head>      <title></title> </head> <body>   <?php        $connection = mysqli_connect( "localhost" , "root" , "" , "db_2018" ) or die (mysqli_error());        $ReadSql = "SELECT * FROM `crud`" ;      $res = mysqli_query( $connection , $ReadSql );   ?>     <table>      <tr>          <th>name</th>          <th>Last Name</th>          <th>email id</th>          <th>gender</th>          <th>age</th>          <th>Action</th>      </tr>        <?php while ( $fetch = mysqli_fetch_array( $res )) {            extract( $fetch );         ?>
Image
How to edit post in Wordpress?

Why you should use CodeIgniter

If you need a framework with small footprint. 1.You need a high performance. 2.Need a framework which requires zero configurations. 3.Need a framework which don't use command line. 4.Need a framework which doesn't require adhering to restrictive coding rules. 5.To get a simplified code structure.

What is Codeigniter?

For building a web application you spend a lot of time in writing the same code again and again. Frameworks provide you a starting block and minimize the amount of code needed to build a website. CodeIgniter is PHP driven framework but it's not a PHP substitute. Diving into CodeIgniter doesn't mean you are leaving PHP behind. PHP is a server-side scripting language for building dynamic web-based applications. CodeIgniter contains libraries, simple interface and logical structure to access these libraries, plug-ins, helpers and some other resources which solve the complex functions of PHP more easily maintaining a high performance. It simplifies the PHP code and brings out a fully interactive, dynamic website at a much shorter time. It supports PHP version of 5.2.6 or newer and MySQL version 4.1 or newer. It makes your web more robust and your code easier to read and maintain. It is a free toolkit, light weight and easier to install. A person using CodeIgniter must be f

How to create database for Wordpress?

How to install Wordpress?

Image
Step 1 : Go to www.wordpress.org and click on download Tab Step 2: Extract it into xampp server root folder i.e htdocs Step 3 : start xampp Step 4 : Goto web browser and tyoe localhost/project-name