Mi codigo html es :
<html>
<title> Megavideo Unlimited </title>
<form action='unlimited.php' metod='post'>
<input type='text' name='Url'>
<input type='submit' value='Eliminar restriccion'>
<form />
</html>
Mi codigo php , el de la accion , es :
<?php
$url = $_GET['Url'];
echo "Estas viendo: $url";
?>
<iframe title="Video player" src="http://vidfetch.com/embed?url=$url" allowfullscreen="true" id="VideoPlayer" width="642" frameborder="0" height="400"></iframe>
La cosa es que en el <iframe title ...etc , pues esta la url del video , osea esta parte http://vidfetch.com/embed?url=$url , y donde pone $url yo quiero indicar que ponga esa variable antes definida con un textbox , pero la toma como si la url fuera asi , en ved de poner la variable..
como haria? Gracias de antemano