Like its a description column which is long but i want to grab some of lines from it on another page ,
$desc=$result_set['Description'];
which is coming from database i want to echo in a p tag but some of its lines not whole description
Like its a description column which is long but i want to grab some of lines from it on another page ,
$desc=$result_set['Description'];
which is coming from database i want to echo in a p tag but some of its lines not whole description
Use Substr Function and specify start and end position
<?php
$start=0;
$end=50;
echo substr($result_set['description'],$start,$end);
?>
Use substr(). Something like
<?php
$len = 40;
echo substr($result_set['description'],0, $len);
?>
This will shorten your description so to a given value (change 40)
Use php function substr
<?php
$start=0;
$end=50;
echo substr($result_set['description'],$start, $end);
?>
And also if the data is coming from a text editor or contains tags then please use the striptags as well. As shown below:
<?php
$start=0;
$end=50;
echo substr(strip_tags($result_set['description']), $start, $end);
?>
This will shorten your description so to a given value (change 50)