Lay du lieu tu nguoi dung
user_8607526207
php
3 years ago
288 B
5
Indexable
<?php
// Khoi tao bien name va gan tri cho no
$name = $_POST["name"];
$lines="";
if($_SERVER["REQUEST_METHOD"]=="POST")
{
$lines = explode(" " ,$name);
foreach($lines as $curline)
{
echo $curline;
}
//echo $name;
}
?>Editor is loading...