Suppose we have this form:
<form name="info" action="info.php" method="post"> <textarea name="info" id="info" maxlength="1000" style="width: 400px; height: 250px;"></textarea> <input type="submit" value="Начали!"> </form>
The user enters information in it, and the input is in rows, i.e. with new line new value. For example, on the first line he wrote “Goods”, on the second “Product”, etc.
How to organize reception of this information on PHP exactly in rows, i.e. If we consider on the example that the value of "Product" was in a variable, for example, $ tov1, "Product" in the variable $ tov2, etc.?