Download Contact Us Form - php Form

Author Topic: Download Contact Us Form  (Read 34088 times)

Offline Smokin Joe

  • Supporter
  • **
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #15 on: June 23, 2009, 04:31:49 PM »


I wanted to test this all out so I filled in the pertinent information within the config.php file, changed some stuff in the index1.php file and accordingly changed some stuff in the emaile.php file.

however whenever i submit an email, it takes me to the success page but I get no email!

you gonna need some of my code or could there be some simple reason for this to be happening?

Offline Smokin Joe

  • Supporter
  • **
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #16 on: June 23, 2009, 04:37:27 PM »
I wanted to test this all out so I filled in the pertinent information within the config.php file, changed some stuff in the index1.php file and accordingly changed some stuff in the emaile.php file.

however whenever i submit an email, it takes me to the success page but I get no email!

you gonna need some of my code or could there be some simple reason for this to be happening?

I removed the "From: $email" from the email() function and everything works fine.  I could try to make it work, but slapping into the body of the email text is good enough for what I need done.

Great form!

Offline Zane Bongo

  • Supporter
  • **
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #17 on: July 17, 2009, 10:55:08 AM »
Is somebody here taking the mickey or something?

I followed the link to download the contact form and came to this board.
I searched to find the download link for the form but couldn't find one.
So I joined the forum and still have no idea how to get the 'FREE' form I came here to get!

Can somebody please tell me how to download this php contact form.... or is it just a scam!!!

Offline d_player33

  • Supporter
  • **
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #18 on: July 22, 2009, 11:14:16 PM »
contact.zip (8.7 KB - downloaded 1885 times.)

1885 people found it, you are just stupid.

Offline magneticcat

  • Supporter
  • **
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #19 on: November 02, 2009, 12:29:21 PM »
Alright, I am having a very frustrating time with phpform.net. I have registered with many sites, but this one has been singular in its clunkiness. First, when i created the account it took an unusually long time to receive the confirmation email. I thought it wasn't going to come at all. But it did come, and I then felt relief that i would be able to now download this php form handling script (just the contact us script w/o captcha) that seems to get good reviews all around the net. But I cannot find the download link anywhere on this board page! Please tell me what is going on. Am i this blind?

Offline Gangstafier

  • Supporter
  • **
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #20 on: November 05, 2009, 07:14:41 PM »
File Header is damaged... please help.

Offline bblori

  • Supporter
  • **
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #21 on: November 08, 2009, 10:23:44 AM »
File is damaged... please upload again  :-[
or if someboady can, send it to bigyo79@gmail.com

Thank you in advance!

Offline ski6

  • Supporter
  • **
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #22 on: November 12, 2009, 12:02:17 PM »
Hi Guys, can some one please help me create an auto reply message to user who fills in my form. I also please need help with this aswell. When i recieved the inquiry in my inbox(outlook 2007) it shows that it was sent from server thing. How do i make it that it will show the user's address that just filled in the form.
<?php
/* Set e-mail recipient */
$myemail  = "ski6@live.com";
/* Check all form inputs using check_input function */
$yourname = check_input($_POST['yourname'], "Enter your Full name");
$subject  = check_input($_POST['subject'], "Write a subject");
$email    = check_input($_POST['email']);
$number   = check_input($_POST['number'], "Enter a contact number");
$region = check_input($_POST['region']);
$query = check_input($_POST['query'], "Write a query");

/* If e-mail is not valid show error message */
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
{
    show_error("E-mail address not valid");
}



/* Let's prepare the message for the e-mail */
$message = " Hello)

Your contact form has been submitted by:

Name: $yourname
Subject: $subject 
Email: $email   
Conact Number: $number   
Region: $region
Query: $query


End of message
";

/* Send the message using mail() function */
mail($myemail, $subject, $message);

/* Redirect visitor to the thank you page */
header('Location: thanks.htm');
exit();

/* Functions we used */
function check_input($data, $problem='')
{
    $data = trim($data);
    $data = stripslashes($data);
    $data = htmlspecialchars($data);
    if ($problem && strlen($data) == 0)
    {
        show_error($problem);
    }
    return $data;
}

function show_error($myError)
{
?>
    <html>
    <body>

    <b>Please correct the following error:</b><br />
    <?php echo $myError; ?>

    </body>
    </html>
<?php
exit();
}
?>

Offline hkysk8r86

  • Supporter
  • **
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #23 on: December 11, 2009, 01:12:20 PM »
Great solution guys but when I submit the Form index1.php it says that all fields need to be completed and they all contain information???

How can I solve this?

Thanks
Jaap



I'm having this issue as well; any solution for this yet?

djape

  • Guest
Re: Download Contact Us Form
« Reply #24 on: December 15, 2009, 05:07:59 AM »
replace in maile.php

Code: [Select]
<?php

if (!$HTTP_POST_VARS["name"] || 
!
$HTTP_POST_VARS["comments"]) 

echo 
"Please fill in all fields.";
echo 
'<a href="javascript:history.go(-1)">Go Back</a>'
exit; 
}
?>

with:
Code: [Select]
<?php
$name 
$_POST['name'];
$comments $_POST['comments'];
$field=array($name,$comments);
foreach (
$field as $field
{
if (
ereg("^\.",$field)) {
echo 
"<center>Invalid Characters:<a href=\"javascript:history.go(-1)\">Go Back</a></center>";  
 Die();
}
if (
ereg("\<"$field)) {
echo 
"<center>Invalid Characters:<a href=\"javascript:history.go(-1)\">Go Back</a></center>";  
 Die();
}
if (
ereg("\["$field)) {
echo 
"<center>Invalid Characters:<a href=\"javascript:history.go(-1)\">Go Back</a></center>";  
 Die();
}
if (
ereg("\>"$field)) {
echo 
"<center>Invalid Characters:<a href=\"javascript:history.go(-1)\">Go Back</a></center>";  
 Die();
}

if (
ereg("\quot"$field)) {
echo 
"<center>Invalid Characters:<a href=\"javascript:history.go(-1)\">Go Back</a></center>";  
 Die();
}

}
?>
;)

Offline nickgermano

  • Supporter
  • **
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #25 on: March 20, 2010, 09:46:20 PM »
hi everyone any body i am just an artist i am trying to fix a mess that i have on my server with my web sites. i had a friend from school write a form for me that I kind of modified and use on many web sites. there have been many problems. my work can be seen at www.webartworkdesign.com :o  can someone point me in a direction that will show me how to configure and put one of these forms to use? I downloaded a couple forms from this site but have not a clue what to do. i know that they have to be on my server in the same folder as the site but how do i modify the forms and make them talk to the server side files?

Offline scoats

  • Supporter
  • **
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #26 on: May 26, 2010, 09:24:32 AM »
I downloaded the Contact Us Form and changed the config code. have some issues though.

1. do i need to change the $powered = 'mysite.tr';//title for powered by  and what do I put there?

2. I copy and pasted the code into my page but when i upload it and fill out the form nothing happens...doesnt go to a 'thank you' page and i don't recieve any emails.

This may be a totally simple fix, but i cannot seem tofigure it out, I am very new to the PHP coding and know basically nothing about it.

thanks
Sarah

Offline coin

  • Supporter
  • **
  • Posts: 4
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #27 on: May 26, 2010, 11:11:20 AM »
I downloaded the Contact Us Form and changed the config code. have some issues though.

1. do i need to change the $powered = 'mysite.tr';//title for powered by  and what do I put there?

2. I copy and pasted the code into my page but when i upload it and fill out the form nothing happens...doesnt go to a 'thank you' page and i don't recieve any emails.

This may be a totally simple fix, but i cannot seem tofigure it out, I am very new to the PHP coding and know basically nothing about it.

thanks
Sarah

u can try with this one

http://phpform.net/board/index.php/topic,321.0.html
 :D :D

Offline aeno

  • Supporter
  • **
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #28 on: July 27, 2010, 07:26:39 AM »
A contact us form with email and form field validation.
It allows your visitors to send you an email directly from your website.


Download: Members

 I want to thank You for the  "Contact us" !   :D   Good working!

Offline mshmethu

  • Supporter
  • **
  • Posts: 3
  • Karma: +0/-0
    • View Profile
Re: Download Contact Us Form
« Reply #29 on: November 18, 2010, 11:53:42 AM »
Where is the download link?
I didn't find it!!