Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
//tell it what character we're looking for
//i.e. space and take the string up to that
$position = strpos($title, ' ');
if ($position !== FALSE){
$first = substr ($title, 0, $position);
}else{
//in case there is only one word
$first = $title;
}
// now take the string from after the first space
$rest = strstr($title, ' ');
select *,substring(title,1,instr(title,' ')) as titleword from mytable;