web 2.0

How to use PHP & Multiple Textarea

How to use PHP &  Multiple textarea This tutorial how to using PHP read a variable from input Multiple textarea

ShotDev Focus:
- Using PHP & Multiple textarea

Example

php_multiple_textarea1.php


<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<form action="php_multiple_textarea2.php" method="post" name="form1">
<textarea name="txtDescription[]" cols="20" rows="3"></textarea><br>
<textarea name="txtDescription[]" cols="20" rows="3"></textarea><br>
<textarea name="txtDescription[]" cols="20" rows="3"></textarea><br>
<input name="btnSubmit" type="submit" value="Submit">
</form>
</body>
</html>

php_multiple_textarea2.php


<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<?
for($i=0;$i<count($_POST["txtDescription"]);$i++)
{
echo "txtDescription $i = <br>".nl2br($_POST["txtDescription"][$i])."<hr>";
}
?>
</body>
</html>

Create a php file and save to path root-path/myphp/

Run
http://localhost/myphp/php_multiple_textarea1.php

Screenshot

PHP Multiple Textarea

PHP Multiple Textarea
.
.
.

Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.