Answers for "echo php from html"

PHP
2

php echo html as text

echo '<pre>';
echo htmlspecialchars($YOUR_HTML);
echo '</pre>';
Posted by: Guest on July-15-2021
1

how to use php echo data in javascript

<?php
$php_variable = 'string'; //Define our PHP variable. You can of course get the value of this variable however you need.
?>			
        <script> js_variable_name = "<?php echo $php_variable; ?>";</script>
Posted by: Guest on July-27-2020

Browse Popular Code Answers by Language