Hello everyone
It’s happy to inform you that we have launched our online shop and new t-shirt for 2022
Please refer to the below link for placing orders.👇
Hello everyone
It’s happy to inform you that we have launched our online shop and new t-shirt for 2022
Please refer to the below link for placing orders.👇
we are planing to start this as a opensource project you can contribute.
we can try to make lankadevelopers NFT market place
Gole of this article
Gole of this article is getting a comprehensive understanding of the flutter declarative routing and the scenarios like login state, app initialization on startup, splash, onboarding, etc...
The full article is available at ishanga.hashnode.dev
I was recently trying to implement Mobile number verification on one of my projects. But after a ton of research, I couldn't find any resource or useable service that gives the facilities to do it locally. That makes me think...
Yes, you can and here is how we are going to do it.
So then I decide to do it by myself creating a separate API for the Mobile verification.
Here is the full article
මේක PHP වලින් හදපු එකක් බලලා පුළුවන්නම් idea එකක් ගන්න. මගේ වැඩේටනම් හරි ගියා
<?php
//friendly URL conversion
function to_prety_url($string){
$string = str_replace("\\", '-', $string);
$string = str_replace("~", '-', $string);
$string = preg_replace('/[\s-]+/', '-', $string);
$string = str_replace('/', '-', $string);
$string = preg_replace("/[\s-]+/", " ", $string);
$string = preg_replace("/[\s_]/", "-", $string);
$string = preg_replace('/\s+/', '-', $string);
$string = preg_replace('/-+/', '-', $string);
return $string;
}
?>