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.
php here document is another way to display the text. In this a token is use in which write multiple line without any quotes like:
<span style="color:#260ff3" class="has-inline-color"><strong>echo <<<Token
data..
Token;</strong></span>Code language: JavaScript (javascript)<?php
echo <<<MyData
Welcome to here document
it is very "important" data.
MyData;
echo MyData;
?>Code language: HTML, XML (xml)
<?php
$info = <<<MyData
Welcome to here document
it is very "important" data.
MyData;
echo $info;
?>Code language: HTML, XML (xml)