How can I put something like *332*18747586# as value in href=""
in HTML?
I want to top up and the string we use to top up in our country is something like *332*18747586#
The following is my sample code
<?php
$a="*332*18747586#";
$aa=(string)$a;
?>
<a href="tel:<?php echo $aa; ?>">Click Here To Top Up</a>
But the result is *332*18747586, href
does not take #
.
How can I include #
in my result?