• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn rút gọn link bằng php đơn giản

Admin

Well-Known Member
Staff member
Administrator
Tạo tập tin tuoitreit_rutgon.php dán code này vào
PHP:
<body>
<div id="container">
<?php
$n=rand(0000,9999);
$pathname=base_convert($n,10,36); //đánh số ngẫu nhiên
mkdir($pathname);
$file=$pathname . "/" . "index.php";
$fh= fopen($file,'w');
$string = "<?php header( 'Location:". $_POST["url"]."'); ?>";
fwrite($fh,$string);
fclose($fh);
echo "Địa chỉ mới là: " . "<a href = http://tuoitreit.vn/" . $pathname . "> http://tuoitreit.vn/" . $pathname . "</a>";
//thay tuoitreit.vn thành đường dẫn của bạn
?>
</div>
</body>
Tạo tập tin index.php dán code này vào
PHP:
<body>
<div id="container">
<form action="tuoitreit_rutgon.php" method="post">
Nhập địa chỉ: <input type="text" name="url" id="textbox"/> </br>
<input type="submit" value="Rút gọn" class="btn"/></br>
</form>
</div>
</body>
Lưu lại là xong
Chúc các bạn thành công!
 

Facebook Comments

New posts New threads New resources

Back
Top