我需要一个代码,当我得到http://www.youtube.com/watch?v=ktvTqknDobU
php 脚本将其重命名为http://bloxhotel.nl/video?watch=ktvTqknDobU
完成后加载该页面。
对不起,我的英语不好。
我试过这个
<form action="welcome_get.php" method="get">
Youtube Link: <input type="text" name="link"><br>
<input type="submit">
</form>
和这个
<?php
ob_start();
include 'includes/inc.bootstrap.php';
$page = Array(
'title' => ((isset($user)) ? $user->username : ''),
'onload' => ((isset($_GET['utm_source']) && $_GET['utm_source'] == 'welcome') ? 'Pixel.View.OpenUrlOverlay(\'/pixlett/Video.php\');' : ''),
'tab' => Array('me', 'home'), 'access' => Array(true, false)
);
include 'content/header.php';
include 'content/menu.php';
?>
<?php echo htmlspecialchars($_POST['link']); ?>