Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- echo nama_lengkap("Rajin", "Copas", "Blogspot.com");
- function nama_lengkap($n1, $n2, $n3)
- {
- $n1 = ucfirst(strtolower($n1));
- $n2 = ucfirst(strtolower($n2));
- $n3 = ucfirst(strtolower($n3));
- return $n1 . " " . $n2 . " " . $n3;
- }
- //yoscruizer
- ?>
Advertisement
Add Comment
Please, Sign In to add comment