cuando lo corro en mi servidor local funciona de lo mas bien pero cuando lo subo al servidor donde alojo las web al momento de insertar link's me vota el href="\\\" de este tipo
Código PHP:
$_web = "<html>";
$_web .= "<head>";
$_web .= "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" />";
$_web .= "<title>Documento sin título</title>";
$_web .= "<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\" />";
$_web .= "</head>";
$_web .= "<body>";
$_web .= $_POST['elm1'];
$_web .= "</body>";
$_web .= "</html>";
// $_web = $_POST['elm1'];
$path=$_REQUEST['rt'];
$Open = fopen($path, 'r+');
if ($Open){
fwrite ($Open,$_web);
header("Location: ../listar.php");
}
saludos.