Laravel Important Links ... Get link Facebook X Pinterest Email Other Apps May 23, 2024 1. faker use Link:https://www.interserver.net/tips/kb/laravel-with-faker/ 2. Insta Mojo Payment gateway. Link:https://www.tutsmake.com/instamojo-payment-gateway-integration-in-laravel-8/ Read more
search vowels from name in php Get link Facebook X Pinterest Email Other Apps May 05, 2024 <!DOCTYPE html> <html> <body> <?php $str = "Rupesh sharma"; $counter = 0; for($i=0; $i<=strlen($str); $i++){ if(in_array($str[$i],['a', 'e' , 'i','o','u'])){ $counter++; } } echo $counter; ?> </body> </html> Read more