All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Robin's SM-201 Website. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 13:40, 10 November 2025 Robinr78 talk contribs created page Template:Fname (Created page with "<?php $fullName = {{{1}}}; // Split the full name into an array of words using space as the delimiter $nameParts = explode(" ", $fullName); // Check if there are at least two parts (first name and last name) if (count($nameParts) >= 2) { $firstName = $nameParts[0]; $lastName = $nameParts[1]; // Assuming the last name is the second part // Construct the desired format "lname, fname" $formattedName = $lastName . ", " . $firstName; echo $formattedName...")