# Fixed size content show in php:: # Its shows only 700 character $busid = strip_tags(html_entity_decode($data)); echo substr($busid, 0, 700), ‘ ‘));
Read MorePAGINATION
Php-How to make slug in php
## make slug using this function. Like: stackofcodes.in/2016/01/10/how-to-search-data-from-table-in-php/ function makeslug($str) { return preg_replace(“/[^0-9a-zA-Z]+/”, “-“, $str); } $tog = how_can i make slug. $slug …
Read Morehow to fetch field value from table in php
## How to fetch a field value from database in php $r = mysql_query(“select field_name from table_name”); $value =@mysql_result($r,0,”field_name);
Read MoreHow to call two or more ajax request parallely in php
<script> $(document).ready(function() { $(document).on(“click”, “._SP12_MR11″, function() { var datastring = {‘DSUC’:SMJX_SMR_SUC,’SRCON’:SMJX_SRCH_ON, ‘LCNT’:SMJX_SMR_LST_CNT,}; $.when( $.ajax({ url:'<?php echo base_url().”search-ax-shwmre-st”;?>’, type: ‘POST’, …
Read MoreIn Show more on click show more button script like this-works
<script> $(document).ready(function() { $(document).on(“click”, “._SP12_SHOWMORE”, function() { var SMJX_SRCH_DPERPG = 5; var SMJX_SMR_SUC = $(“._SP12_SHOWMORE”).attr(‘data-srch-uc’); var SMJX_SMR_LST_CNT = $(“._SP12_SHOWMORE”).attr(‘data-lstcnt’); var SMJX_SRCH_ON …
Read MoreHow to call ajax request one after another in php
<script> $(document).ready(function() { $(document).on(“click”, “._SP12_SHOWMORE”, function() { var datastring = {‘SRCON’:SMJX_ON, ‘LCNT’:SMJX_LST_CNT,}; // FIRST AJAX REQUEST:: $.ajax({ url:'<?php echo base_url().”search-rd”;?>’, type: …
Read Morepagination with scroll using ajax
HTML PAGE IS HERE: IN CODEIGNITER:: <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”utf-8″> <title>Show More Testing</title> <style type=”text/css”> ::selection{ background-color: #E13300; color: white; } ::moz-selection{ …
Read More