gpt4 book ai didi

用于制作在线表单的 Java applet 或 JavaScript?

转载 作者:行者123 更新时间:2023-12-02 08:34:30 26 4
gpt4 key购买 nike

我不知道我在说什么。请告诉我我需要知道什么。 ^_^"我想创建一个在线测试,将结果发送到某个电子邮件地址,但我不知道如何开始。我认为可以使用 Java 和小程序或 JavaScript 来制作文本框之类的东西,对吗?我应该尝试哪方面的工作?

我还希望测试在每次运行时都进行更改,很可能基于 .txt 或告诉如何更改问题和答案的内容。我也不太确定如何使其工作......我想,使用函数来说明如何根据我在不同文件中使用的变量来更改内容。 javascript 甚至可以从其他地方读取东西吗?那么也许它需要是小程序的东西?

最佳答案

这是一个使用 HTML + PHP 的快速示例(为了简单起见,放弃了 javascript)

HTML 页面(index.html):

<html>
<head>
<title>My Cool Form</title>
</head>
<body>
<!-- Set the action to the page that will handle the form data -->
<form action = "thanks.php" method="post">
<!-- The name attribute will be used by thanks.php later -->
E-Mail: <input name="email" type="text"></input>
<input type="submit" value="Submit"></input>
</form>
</html>

谢谢.php:

<?php
$to = "me@example.com"
$from = "From: form-results@example.com";
$subject = "Got a result from the form!";
// Get the e-mail from the form
$email = $_POST['email'];
$body = "The persons e-mail is" . $email;

// Send an e-mail to me@example.com
mail($to, $subject, $body, $from);

?>
<html>
<head>
<title>Thank you :)</title>
</head>
<body>
Thanks for your submition. We have added
<?php
echo $email;
?>
to our mailing list!.
</body></html>

HTML 是一种用于定义文档和表单的标记语言。您的浏览器使用它来创建用户看到的网页。

PHP 是一种服务器端语言,在您的服务器上运行,而不是在用户上运行,它访问表单、数据库、RSS 提要等中的信息等数据,然后处理数据(例如将表单结果邮寄给您)在向用户发送 HTML 文档之前(例如感谢您提交的文档、数据库中的最新博客文章等)。

找到一个不错的免费主机并上传这些文件以查看它们的运行情况。

关于用于制作在线表单的 Java applet 或 JavaScript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2331246/

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