How to store the values of an input in positions of an array? I would like to get the value that was typed in the field and store it in an array, where I need to sort the values that were added in the array and sort them in descending order.
Ex:
<?PHP
echo"<tr>
<td>
<input type="text" name="campos" value="">
</td>
<td>
<input type="submit" value="Submit">
</td>
</tr>";
?>