Answers for "php save single quote mysql"

PHP
1

php single quote vs double quote

$s = "dollars";
echo 'This costs a lot of $s.'; // This costs a lot of $s.
echo "This costs a lot of $s."; // This costs a lot of dollars.
Posted by: Guest on December-22-2021
1

append single quote around variable in php string

echo "'$animal'";
Posted by: Guest on January-27-2021

Browse Popular Code Answers by Language