MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings
From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.
With Motoshare, every parked vehicle finds a purpose.
Owners earn. Renters ride.
🚀 Everyone wins.

Example of Date function in PHP
<?php
echo "Today is ".date("d")."<br>";
echo "Today is ".date("js")."<br>";
echo "Month is ".date("F")."<br>";
echo "Month is ".date("m")."<br>";
echo "Month is ".date("n")."<br>";
echo "Month is ".date("M")."<br>";
echo "Year is ".date("Y")."<br>";
echo "Year is ".date("y")."<br>";
echo "Full Date is ".date("d/m/Y")."<br>";
echo "Full Date is ".date("y/m/d")."<br>";
echo "week Day is ".date ("D")."<br>";
echo "week Day is ".date ("N")."<br>";
echo "week Day is ".date ("L")."<br>";
echo "Day is ".date("Z")."<br>";
echo "Week of the year ". date("W")."<br>";
echo "Is This is leap year". date("L");
?>Code language: HTML, XML (xml)
OutPut:
Today is 6
Today is 6th
Month is May
Month is 05
Month is may
Year is 2022
Year is 22
Full Date Is 6/05/2022
Full Date Is 2022-May-6
Week Day is Fri
Week Day is Friday
Week Day is 5
Day is 125
Week of the year=18
NOCode language: JavaScript (javascript)