Answers for "show first name txt php"

PHP
1

first name of string php

$words = explode(" ", $string);

$firstname = $words[0];
$lastname = $words[1];
$third_word = $words[2];
Posted by: Guest on February-05-2021

Browse Popular Code Answers by Language