# use to encode html tags. it just encode the tags but not remove. htmlentities($your_content, ENT_QUOTES);
Read MorePHP
Php- How to use Data Table in php
# Use Data Table for auto search fields. #Link CSS <link rel=”stylesheet” type=”text/css” href=”https://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css”> # Link The JS Library <script type=”text/javascript” language=”javascript” src=”//code.jquery.com/jquery-1.12.3.js”></script> <script type=”text/javascript” …
Read Morephp- Redirect the same page
# Its Redirects the same page where it is.. header(“location:http://{$_SERVER[‘HTTP_HOST’]}{$_SERVER[‘REQUEST_URI’]}”); using this post request can be blanked or empty no duplicate data will insert in …
Read Morephp- How to get image height and width
# LIST IMAGE INFO list($width, $height, $type, $attr) = getimagesize($_FILES[“img”][‘tmp_name’]); echo $width; // shows width echo $height; // shows height
Read MorePhp – How to add day,month,year with current date
## ADD DAYS, MONTHS, YEAR WITH CURRENT MONTHS:: FORMAT:: date(‘Y-m-d’, strtotime(‘+2 months’)); EXAMPLE:: $duration = 5; if($calas == “days”) { $plus = ‘+’.$duration.’ …
Read MorePhp – How to use form Validation in CodeIgniter
## MAKE REQUIRED AND UNIQUE IN CODEIGNITER // ONLY REQUIRED FIELDS $this->form_validation->set_rules(‘answer4’, ‘Answer Four’, ‘required’); // ONLY REQUIRED WITH DATABASE UNIQUE VALUE $this->form_validation->set_rules(‘title’, ‘Question …
Read MorePhp- Show any text only 100 letters
## In a particular div by using this we can show only 100 letters and then … in php by removing tags. $product_description = html_entity_decode($product_description); …
Read MorePhp: decode html data in php
## HTML DECODE :: varible $product_offer_decsription; html_entity_decode($product_offer_decsription);
Read MorePhp: How to show star rating
## Showing Rating in Php using star & blank rating $ProductId = 1; $product_rating_qu = mysql_query(“select avg(rating) as star_rate from ratings where ratedto='” . $ProductId …
Read More