- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
<?php
/*
*
*
*
*/
if(!isset($_POST["links"])){
echo '<form action="links.php" method="post">
<p>Ссылки:</p>
<p><textarea rows="10" cols="45" name="links"></textarea></p>
<p><input type="submit" value="Отправить"></p>
</form>';
} else {
$array = explode("\r\n", $_POST["links"]);
foreach($array as $link){
if(preg_match("/^(http:\/\/{1})((\w+\.){1,})\w{2,}$/i", $link)){
echo "<a href=\"$link\">$link</a><br>";
}
}
}
?>
guest 06.05.2009 11:08 # 0
Куда смеяцо?