Hey all,
i've a form with a textinput for links,
but at submit, it won't send any links started with http.
for example:
<form acion="result.php" method="post">
<input type="text" name="link" />
<input type="submit" name="submit" value="submit"
</form>
<?php
//---Result.php:
echo $_POST['link'];
// if links start with http:// it won't be there
?>
Any tips?