Установите значение, используя текстовое поле в форме - PullRequest
0 голосов
/ 03 апреля 2019

Я видел этот код из https://www.codexworld.com для создания URL Shortener с помощью PHP.

// Include database configuration file
require_once 'dbConfig.php';

// Include URL Shortener library file
require_once 'Shortener.class.php';

// Initialize Shortener class and pass PDO object
$shortener = new Shortener($db);

// Long URL
$longURL = 'https://www.codexworld.com/tutorials/php/';

// Prefix of the short URL 
$shortURL_Prefix = 'https://localhost/'; // with URL rewrite
$shortURL_Prefix = 'https://localhost/?c='; // without URL rewrite

try{
    // Get short code of the URL
    $shortCode = $shortener->urlToShortCode($longURL);

    // Create short URL
    $shortURL = $shortURL_Prefix.$shortCode;

    // Display short URL
    echo 'Short URL: '.$shortURL;
}catch(Exception $e){
    // Display error
    echo $e->getMessage();
}

Я понял, как работает система, но не знаю, как эта строка кода $longURL = 'https://www.codexworld.com/tutorials/php/'; не будет основан на статическом значении, но будет динамическим, собирая ссылку, где пользователь будет вводить ее, используя текстовое поле ввода в форме?

Как я могу это сделать?Заранее спасибо!

...