gpt4 book ai didi

javascript - 使用自定义文本自动链接到代码

转载 作者:行者123 更新时间:2023-12-02 13:01:05 27 4
gpt4 key购买 nike

我上次问过如何在 ftp 服务器上上传的文件的网站正文上获取自动生成的链接。链接是这个Link to Code Automatic .

但我父亲希望它不显示文件名。相反,它应该显示他将在其他页面上提供的名称。

我的主要故事情节是,当我进入该页面时,它要求我输入一个要在 <br> 之后显示的名称。 ,它应该提供 ftp 服务器上文件的下拉菜单,并要求我选择我为其命名的文件。进一步提交后,它会显示名为 i game 的文件的链接。

请帮我解决这个问题,因为我是 PHP 和 SQL 的初学者。

谢谢

最佳答案

对于第一页,使用第一个问题中建议的内容,但使用 HTML select 代替:

<?php
// page1.php
// ...

// create a form element
echo '<form action="page2.php" method="get">';
// create the 'name' input
echo 'Enter the displayed name: <input name="name" placeholder="displayed name"><br />';

// start the dropdown
echo 'Enter the file the link should point to: <select name="file">';

// get all files that should be displayed
$files = scandir(__DIR__);
$files = array_diff($files, array('.', '..'));

foreach ($files as $file) {
// add an option to the dropdown
echo '<option value="' . $file . '">' . $file . '</option>';
}

// close the dropdown and the form
echo '</select>';

// add a submit button to the form
echo '<button type="submit">Submit</button>';

echo '</form>';

// ...
?>

在第二页上,显示链接:

<?php
// page2.php
// ...
$name = $_GET['name'];
$file = $_GET['file'];
echo '<a href="' . $file . '">' . $name. '</a><br>';
// ...
?>

关于javascript - 使用自定义文本自动链接到代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44290455/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com