Anyone use gbcf-v3 script? help

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
groogruxking40
Forum Newbie
Posts: 17
Joined: Wed Jun 17, 2009 8:04 am

Anyone use gbcf-v3 script? help

Post by groogruxking40 »

Hey all,

I was wondering if anyone has used the Contact form called gbcf-v3
I'm having problems getting it to go "live" the test form is working great

here is my simple simple contact page code

Code: Select all

<form method="POST" action="send.php">
Fields marked (*) are required
 
<p>Email From:* <br>
<input type="text" name="EmailFrom">
<p>Full Name:* <br>
<input type="text" name="Name">
<p>Comments:* <br>
<input type="text" name="Comments">
<p><input type="submit" name="submit" value="Submit">
</form>
<p>
the instructions say this:

9. Add the link to the style sheet and the focus JavaScript file - for form field
focus effects for Internet Explorer - to the head of your contact form page
(see Figure 1), then add the PHP "include" to the body content area of that
same page (see Figure 2). Go live and worry not.

<!--Figure 1 (written as xhtml)-->

Code: Select all

 
  <link rel="stylesheet" type="text/css" href="gbcf-v3/files/themes/default.css" media="screen" />
 <!--[if IE]>

 
  <script type="text/javascript" src="gbcf-v3/files/focus.js"></script>
 <![endif]-->
 
Figure 1 Note: You may choose to add the form styles to your own style sheet or
do something else such as use existing styles. It's your call. Use the default
style sheet to see what classes you have available to you. The style sheet name
in the example is default.css. Change as needed if using a theme.

<!--Figure 2-->

Code: Select all

<?php include_once("gbcf-v3/form.php"); ?>
Figure 2 Note: In all cases above, adjust the path to the files to meet your needs
such as if your contact page is in a folder: ../gbcf-v3/form.php.

I did that, and absolutely nothing happens..

any ideas?

Thank you
Last edited by Benjamin on Wed Jun 24, 2009 12:39 pm, edited 1 time in total.
Reason: Added [code=html] tags.
User avatar
McInfo
DevNet Resident
Posts: 1532
Joined: Wed Apr 01, 2009 1:31 pm

Re: Anyone use gbcf-v3 script? help

Post by McInfo »

It looks like this was solved on a different forum.

http://www.hotscripts.com/forums/php/54 ... -help.html

Edit: This post was recovered from search engine cache.
Post Reply