gpt4 book ai didi

php - 简单的联系表格不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 03:07:45 25 4
gpt4 key购买 nike

我正在尝试制作一个简单的联系表格,我有两个文件,contact.php 和 index.php

我希望我的 index.php 文件中的 "查询类型"中有几个选项,我将这些选项放在 contact.php 文件中的数组中,如下所示:

<?php

class Contact{

public static $types = array(

1 => 'Product enquiry',
2 => 'Billing enquiry',
3 => 'Support enquiry'


);
}

我还在 index.php 文件中包含了 contact.php:

<?php require_once('file:///D:/Simple%20Contact%20Form/Liberay/Contact.php'); ?>

但经过多次尝试,我在下拉字段中看不到任何选项,所以可能与连接有关?当我尝试 php 代码时,我是否必须将它放在像 Xampp 这样的本地服务器中?

这是 index.php 的完整代码:

<?php require_once('file:///D:/Simple%20Contact%20Form/Liberay/Contact.php'); ?>

<!DOCOTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Simple contact form with PHP</title>
<link rel="stylesheet" type="text/css" href="file:///D:/Simple%20Contact%20Form/CSS/core.css"/>

</head>

<body>
<form method="post" id="formContact" class="large-8 large-centered columns custom">
<fieldset>

<legend>Simple Contact Form with PHP</legend>

<div class="large-6 columns">

<label for="first_name">First name: *</label>
<input
type="text"
name="first_name"
id="first_name"
placeholder="Your first name"/>
</div>

<div class="large-6 columns">

<label for="last_name">Last name: *</label>
<input type="text"
name="last_name"
id="last_name"
placeholder="Your last name"/>
</div>

<div class="large-6 columns">

<label for="first_name">Email address: *</label>
<input type="email"
name="email"
id="email"
placeholder="Your Email address"/>
</div>

<div class="large-6 columns">

<label for="type">Enquiry type: *</label>
<select
name="type"
id="type">

<option value="">Select one</option>

<?php if (!empty(Contact::$types)) { ?>

<?php foreach(Contact::$types as $id => $type) { ?>

<option value="<?php echo $id; ?>"><?php echo $type; ?></option>
<?php } ?>

</select>

</div>
<div class="large-12 columns">
<label for="enquiry">Enquiry: *</label>
<textarea name="enquiry" id="enquiry" placeholder=" Your message"></textarea>
</div>

<div class="large-12 columns">

<button class="button small">Send message</button>

</div>


</fieldset>

</form>

<script src="file:///D:/Simple%20Contact%20Form/jquery.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="file:///D:/Simple Contact Form/js/core.js"></script>

</body>




</html>

*对不起,如果有一点点困惑,但我会尽力而为(-:

最佳答案

如果您使用 XAMPP,请将所有文件放在 htdocs 文件夹下。你提到了

<?php require_once('file:///D:/Simple%20Contact%20Form/Liberay/Contact.php'); ?>

- 指的是本地文件路径。

关于php - 简单的联系表格不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30125420/

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