how to save array of inputs in php

Solutions on MaxInterview for how to save array of inputs in php by the best coders in the world

showing results for - "how to save array of inputs in php"
Leanne
04 Oct 2019
1
2<?php
3    echo '<input type="hidden" value="' . htmlspecialchars($data) . '" />'."\n";
4?>
5
6
Perla
29 Sep 2017
1
2<?php
3    echo "<textarea name='mydata'>\n";
4    echo htmlspecialchars($data)."\n";
5    echo "</textarea>";
6?>
7
8