PHP Questions Home

Categories

Arrays
Files
Forms
Functions
Images
MySQL
Numbers
Others
Strings
Website


PHP Functions

PHP Functions


More PHP

Top Questions
Ask a Question

How do I convert characters to HTML entities using PHP?


If you want to do this, then it will come as no surprise that you use the HTMLentities function, which works as follows:

<?php
$address 
"www.food.com?blah=this and that&blah2=done";

echo 
HTMLentities($address);
//www.food.com?blah=this and that&amp;blah2=done
?>



More strings PHP Questions

How do I escape a string with slashes?
How do I make the contents of a string lower case?
How do you check if a variable is set or not in PHP?
How do I turn a string into an array?
How do I extract the values of variables from a string?