Answers for "php take first latter"

PHP
0

get firstwod php

$dis=$mysqli->query("select * from article");
while ($diss = $dis->fetch_assoc()) {
 
  $t=$diss['title'];

$abbreviation = explode(' ', trim($t ))[0];
echo $abbreviation; 
echo'</br>'; // will print Hello 
}
Posted by: Guest on October-19-2021

Code answers related to "php take first latter"

Browse Popular Code Answers by Language