Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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 
}
 
PREVIOUS NEXT
Tagged: #firstwod #php
ADD COMMENT
Topic
Name
2+7 =