<?php
if ($link = $_POST["link"]) {
$tamanho = strlen($link) - 1;
$aux = $link;
for ($i=0; $i <= $tamanho; $i++) {
$aux[$i] = $link[$tamanho - $i];
}
$link = $aux;
$aux = "";
if (substr_count($link,"http://"))
echo "<a href='$link'>$link</a><br>";
else
echo "<a href='http://$link'>$link</a><br>";
}
else
echo "Escolha Um Link.<br>";
echo "</center>";
?>Vitor Yudi Hansen