简体   繁体   English

将PHP与我们联系表格嵌入到html文档中

[英]Embed PHP contact us form into html document

I have a html document and I want to embed a PHP contact form into the page. 我有一个html文档,我想在页面中嵌入一个PHP联系人表格。 So far I have this, which I though should call the script to the page. 到目前为止,我已经有了这个,但是我应该将该脚本称为页面。 But at the moment nothing is displaying, not sure what I've done wrong? 但是目前没有任何显示,不确定我做错了什么吗?

<section>
    <header class="major">
        <h2>Mini Case studies</h2>
    </header>
    <p>If you'd like to learn more, why not download the full case study. Just complete the details below.</p>
    <iframe src="http://crea8tion.com/PP/contactus/form.php"></iframe>
    <footer>

    </footer>
</section>

Form.php code is as follows Form.php代码如下

> <?php
> 
> define('EMAIL_FOR_REPORTS', 'dano_w@hotmail.com');
> define('RECAPTCHA_PRIVATE_KEY', '@privatekey@'); define('FINISH_URI',
> 'Thank you for your interest. Click here to download the file.');
> define('FINISH_ACTION', 'redirect'); define('FINISH_MESSAGE', 'Thanks
> for filling out my form!
> http://online.wsj.com/public/resources/documents/Reprint_Samples.pdf');
> define('UPLOAD_ALLOWED_FILE_TYPES', 'doc, docx, xls, csv, txt, rtf,
> html, zip, jpg, jpeg, png, gif');
> 
> require_once str_replace('\\', '/', __DIR__) . '/handler.php';
> 
> ?>
> 
> <?php if (frmd_message()): ?> <link rel="stylesheet"
> href="<?=dirname($form_path)?>/formoid-default-skyblue.css"
> type="text/css" /> <span class="alert
> alert-success"><?=FINISH_MESSAGE;?></span> <?php else: ?> <!-- Start
> Formoid form--> <link rel="stylesheet"
> href="<?=dirname($form_path)?>/formoid-default-skyblue.css"
> type="text/css" /> <script type="text/javascript"
> src="<?=dirname($form_path)?>/jquery.min.js"></script> <form
> class="formoid-default-skyblue"
> style="background-color:#FFFFFF;font-size:14px;font-family:'Open
> Sans','Helvetica
> Neue','Helvetica',Arial,Verdana,sans-serif;color:#666666;max-width:250px;min-width:150px"
> method="post"><div class="title"><h2>Please complete the below to
> access the download</h2></div>    <div class="element-input" 
> <?frmd_add_class("input")?>><label class="title">Full
> Name</label><input class="large" type="text" name="input" /></div>
>   <div class="element-email"  <?frmd_add_class("email")?>><label
> class="title">Email</label><input class="large" type="email"
> name="email" value="" /></div>
> 
> <div class="submit"><input type="submit" value="Submit"/></div></form>
> <script type="text/javascript"
> src="<?=dirname($form_path)?>/formoid-default-skyblue.js"></script>
> 
> <!-- Stop Formoid form--> <?php endif; ?>
> 
> <?php frmd_end_form(); ?>

I used this form . 我用这种形式 The best part is this generator also has responsive feature. 最好的部分是此生成器还具有响应功能。

Just to close this off. 只是为了关闭它。 I actually used a different solution in the end. 最后,我实际上使用了另一种解决方案。 Its a pre built offering found here 它是在这里找到的预制产品

http://codecanyon.net/item/contact-form-generator-form-builder/1719810?ref=topstudio http://codecanyon.net/item/contact-form-generator-form-b​​uilder/1719810?ref=topstudio

This solutions met all of my requirements. 该解决方案满足了我的所有要求。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM