I have a html document and I want to embed a PHP contact form into the page. 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
> <?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(); ?>