Saturday, May 26, 2007

Làm sao để post một mảng lên server ;)

Demo post một mãng trong PHP.

post.html
<form action = "post.php" method="post" >
Value 1<input type="text" name="yourvalue[0]"/>

Value 2<input type="text" name="yourvalue[1]"/>

Value 3<input type="text" name="yourvalue[2]"/>

<input type="submit" name="submit"/>
</form>

post.php
<?php
if (isset($_POST['submit']))
{
echo $_POST['yourvalue'][0];
echo "<br />";
echo $_POST['yourvalue'][1];
echo "<br />";
echo $_POST['yourvalue'][2];
echo "<br />";
}
?>

Quá dễ phải hông các bạn :)

2 comments:

Anonymous said...

u've a spelling error in Vietnamese : "mảng" not "mãng"(would u like say a snake in Chinese-Vietnamese word)

Nha said...

:)