Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to disable html coding property in php

<?php 
echo htmlspecialchars($_POST['html']);
if($_POST['html'] == htmlspecialchars){
    return false;
}

?>
<form>
<input type="text" name="html" placeholder="HTML special chars">
</form>
 
PREVIOUS NEXT
Tagged: #disable #html #coding #property #php
ADD COMMENT
Topic
Name
1+4 =