how to convert new line and html code in htmlspecialchars in php

前端 未结 1 1232
抹茶落季
抹茶落季 2021-01-17 08:08

here is my string

hello


world




how can I convert this string

hello

&         


        
相关标签:
1条回答
  • 2021-01-17 09:01

    please read more on php ..Maybe this can help you https://www.w3schools.com/pHp/default.asp

    <?php
    
        echo "hello";
        echo "</br>";
        echo "world";
        echo "</br>";
        echo "</br>";
        echo "<input type = 'textare' value = 'hello world'>";
        ?>
    
    0 讨论(0)
提交回复
热议问题