Answers for "how to save array of inputs in php"

PHP
0

how to save array of inputs in php

<?php
    echo '<input type="hidden" value="' . htmlspecialchars($data) . '" />'."\n";
?>
Posted by: Guest on October-18-2020
0

how to save array of inputs in php

<?php
    echo "<textarea name='mydata'>\n";
    echo htmlspecialchars($data)."\n";
    echo "</textarea>";
?>
Posted by: Guest on October-18-2020

Browse Popular Code Answers by Language