How To Use Trap17 Cgi Formmail - a built-in script in every hosting

Pages: 1, 2
free web hosting

Latest Entry: (Post #15) by GLeN on Jan 9 2006, 11:05 PM. (Line Breaks Removed)
Very nice tutorial . I always wondered how to do stuff like that lol
Express your Opinion! Contribute Knowledge.

Free Web Hosting, No Ads > CONTRIBUTE > Tutorials

How To Use Trap17 Cgi Formmail - a built-in script in every hosting

BuffaloHELP
This tutorial is using TRAP17 hosting's built-in script called cgiemail. There are several hundreds of free scripts you can download and install it yourself but why not use what is already provided for you, if all you need is a simple submit and data collection?

Let's begin. There are three things you need to remember: 1) you can rename the file however you'd like 2) two files (which I'll name them submitForm.html and template.txt) must be in the same directory 3) first two lines in template.txt must EXIST.

Write your submitForm.html (where you write a HTML page to let a visitor enter your desired information) and include the following (an example)
HTML
<form method="POST" action="http://name.trap17.com/cgi-bin/cgiemail/directory/template.txt" name="myform" >
<input type="hidden" name="addendum" value="Thank you. If you are seeing this page, you should be contacted within 48 hours.">
<table border=0 cellspacing=0 celpadding=0>
<tr>
<td colspan=2>Enter your information:<br>
</td>
</tr>
<tr>
<td><p align=right>
First Name:</td>
<td>
<input type="text" name="FirstName" size=25 maxlength=50>
<td>
</tr>
<tr>
<td><p align=right>
Last Name:</td>
<td>
<input type="text" name="LastName" size=25 maxlength=50>
</td>
</tr>
<tr>
<td><p align=right>
Zip Code:</td>
<td>
<input type="text" name="zip" size=25 maxlength=50>
</td>
</tr>
<tr>
<td><p align=right>
Email:</td>
<td>
<input type="text" name="email" size=25 maxlength=50>
</td>
</tr>
<tr>
<td><p align=right>
Phone:</td>
<td>
<input type="text" name="area" size=4 maxlength=5>-
<input type="text" name="exchange" size=4 maxlength=3>-
<input type="text" name="number" size=5 maxlength=4>
</td>
</tr>

----------
Edit: Thank you midnightvamp. I have completely forgotten the most important code for sending. Please don't forget to include this at the bottom of your form code
QUOTE(midnightvamp)
To add a submit button to the form (so the people can send it once it's filled out), you would type this at the bottom...

CODE

<INPUT TYPE="submit" value="Send">


You might also want a 'reset' button:

CODE

<INPUT TYPE="reset" value="Reset">


And I believe that you must add a line to end the code for the form too at the bottom:

CODE

</form>
The discussion is also continued here http://www.trap17.com/forums/index.php?sho...ndpost&p=179049
----------

It is not important how this HTML is written but that name="value" is assigned as you would like. Method must be ="POST"and ACTION="http...yoursite.trap17.com/cgi-bin/cgiemail/directory/template.txt" directory is optional, you can have this in your root or under another subfolder. Watch the template.txt spelling and they are case sensitive.

Now write your template.txt as follows
CODE
To: your-receiving-address@server.com
Subject: testing out the application form

Name entered: [FirstName] [LastName]

Zip code: [zip]

Sender's email: [email]

Sender's phone: ([area])[exchange]-[number]

The first two lines are MUST! The way this cgiemail was written it looks for the first two lines for the execution. You can change them however you see fit but they must have To: and Subject: as listed above. And as you can see, I have my TXT file tab and spaced out as I'd like to see the final result.

When you test out the form you will receive, either as attached TXT file or as a body of a letter (my yahoo account shows me both)
CODE

Name entered: Buffalo HELP

Zip code: 90210

Sender's email: sender's@entered.email

Sender's phone: (714)555-1212

When you receive this submitted data, you'll noticed that it's from some unknown email address (I won't type it here since it's against posting someone else's email address). That address is from the creator of this cgiemail file. That's why I have the visitor enter his/her address so that I have a record of the reply. It's not perfect but it works beautifully.

I'll be sure to site the original source once I find the link again (I forgot where I put that thing)

Cross post with question: http://www.trap17.com/forums/help-reading-files-t25623.html

Edit: Found the original source located in cPanel CGI center > CGI Email
http://web.mit.edu/wwwdev/cgiemail/user.html
http://web.mit.edu/wwwdev/cgiemail/webmaster.html#test

 

 

 


Reply

OpaQue
Cool thank.. Cgi Formmail tutorial will definately prove to be helpful for the members smile.gif

Reply

BuffaloHELP
Forgot to explain this line:
HTML
<input type="hidden" name="addendum" value="Thank you. If you are seeing this page, you should be contacted within 48 hours.">

When you have this HTML, after a visitor submits the form the next page or redirect page will display the message, Thank you. If you are seeing this page, you should be contacted within 48 hours. If you know how to manipulate you can also have it redirect it to some other page with time delay. The possibilities are endless.

Reply

BlaqueMajik
Good tutorial. I figured I would ask here before anywhere else.

What exactly is CGI and what is it used for? I have seen it around alot but I have never used it beacuse of not knowing what it was.

If someone could just tell me what it is in here, give me a link to a good site about it, or even make a tutorial about it, I would be very grateful.

Anyway, good tut.

Reply

thablkpanda
Personally, I see it as a dumbed down version of PHP, for handling forms and advanced functions (however not as powerful as PHP)

Panda

Reply

Adamrosso
Thanks. Even after reading this tutorial im not so good with forms,etc. My friend help's me with them most of the time =). Good tutorial though =D

Reply

BuffaloHELP
QUOTE(BlaqueMajik @ Aug 5 2005, 11:51 AM)
What exactly is CGI and what is it used for? I have seen it around alot but I have never used it beacuse of not knowing what it was.
*



Sorry to be off topic but CGI stands for
QUOTE
The common gateway interface (CGI) is a standard way for a Web server to pass a Web user's request to an application program and to receive data back to forward to the user. When the user requests a Web page (for example, by clicking on a highlighted word or entering a Web site address), the server sends back the requested page. However, when a user fills out a form on a Web page and sends it in, it usually needs to be processed by an application program. The Web server typically passes the form information to a small application program that processes the data and may send back a confirmation message. This method or convention for passing data back and forth between the server and the application is called the common gateway interface (CGI). It is part of the Web's Hypertext Transfer Protocol (HTTP).

If you are creating a Web site and want a CGI application to get control, you specify the name of the application in the uniform resource locator (URL) that you code in an HTML file. This URL can be specified as part of the FORMS tags if you are creating a form.


Go to google.com and type in the search field
QUOTE
define:cgi
and look for this related meaning and links for Common Gateway Interface.

Edit: For those who are looking to use this preinstalled script and have had trouble getting it to work, please check this thread http://www.trap17.com/forums/index.php?sho...ndpost&p=179014 Thank you smile.gif

 

 

 


Reply

wild20
This is great, but I have a site that doesn't have cgiemail. Is there a way to hook up an html code with cgi to make it so it will send info to you without having the person to use their own email?

This way I could have people send their comments to me without having to use their email, but a comment area.

Reply

BuffaloHELP
CGI formmail requires you to have CGI capability. If the server (other than TRAP) can run PHP here's another link http://www.trap17.com/forums/index.php?sho...ndpost&p=131276 (by the way, snlildude87 also wrote another tutorial but I can't find it at this time)

A simple html data retrieval can be expressed as
HTML
<INPUT TYPE="submit" value="Send">

and all you have to do is place an appropriate text field input argument before this one. You can search for free html formmail generator. I have found some in the past but since I'm now hosted with TRAP, I gave all that up.

PS, the sender's email address is absolutely optional. I made my example to include that factor to cover the general knowledge of what cgiemail can do.

Reply

wild20
Thanks Buffalo. I wish I could have developed my own script and stuff. But in order for the user to not have to use their own email account, I guess I will be looking at some free form generators. Thanks for your help again. I will be sure to check out all the possibilities. See you around.

Reply

Latest Entries

GLeN
Very nice tutorial . I always wondered how to do stuff like that lol

Reply

sportytalk
Thanks for the time taken to write this tutorial on how to use the cgi mail form function. I may use this in the near future.

Up til know I've been using the php mail script as it's been a language i'm used to writing in. There is an incredible amount of functionality existant in the php language.

I might try this later. It sounds like it's easy to configure/install and that not a lot of time is needed.

Reply

Lyon2
It's a cool way to receive email, but i prefer using flash and php, cause i really hate cgi and perl. Cgi is a high vulnereble language, beleave me.
There are programs like cgi scan and tons of others that scan websites/scripts whatever in cgi that is hosted in some web server to get in with admin account, that's what hackers use for cgi website (not only).
Thanks, anyway.

Reply

mendezgarcia
QUOTE(thablkpanda @ Aug 7 2005, 04:19 AM)
Personally, I see it as a dumbed down version of PHP, for handling forms and advanced functions (however not as powerful as PHP)

Panda
*



False. CGI may be as good as PHP - or even better.
Form mail is just like a "script" to make it easier to use CGI's mail functions.

Reply

BuffaloHELP
Yes. In fact I added a script that it will not send if the information I want isn't included from the sender. I added another script so that the email address is correctly entered, such as name@address.extension. The possibilities are endless. smile.gif

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Similar Topics

Keywords : trap17, cgi, formmail, built, script, hosting

  1. [phpbb] Member Last-visit Report Script
    for phpbb2 databases (0)
  2. Install An Aef Forum Onto The Trap17
    From a zip file (11)
    Installing an AEF Forum on the Trap17 Server Preparation for Installing the AEF Forum
    The following items are required for the installation of the packaage onto your site: 1. - a copy
    of the AEF Forum zip package from http://anelectron.com/download.php 2. - a MySql Database 3. - a
    Database User 4. - a password for the Database User 5. - Privileges allowed for the Database User
    The details for ensuring that you have all of these items are as follows: 1. - a copy of the AEF
    Forum zip package from http://anelectron.com/download.php . Simply browse to t....
  3. Background Image Swap Script
    Change a Background Image based on clock time (15)
    Background Image Changer Script To swap the background image from your CSS file according to the
    Server Clock Time. 1.) In your CSS file, add the following rule: CODE body {
        background: url(time.png); } 2.) Create a "folder" named time.png. 3.) Into the
    folder, place three images named morning.png, day.png, night.png. 4.) Also, in the same folder,
    create an index.php file and copy/paste the following script. CODE <?php $hour =
    date('H'); if ($hour < 12 ) {     $image =
    "morning.png"; } ....
  4. Image Rotator Script (another One)
    easy to implement (0)
    In case you haven't noticed, I have a different Avatar display on the Forum each time the page
    is refreshed. /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif"
    /> For those of you who might want the script to do that, here is the one I am using: HTML
    $filesp = glob('*.png'); if(empty($filesp)){ echo
    'no images found...die br >'; die(); } else{ foreach ($filesp as
    $file) { $img_array[] = trim($file); }....
  5. For ... Next Loops And Script Planning
    My Fifth PHP Tutorial (2)
    Be sure to read the other ones. They are located in the TUTORIALS section, and at the time of this
    writing all on the first page. Intro To PHP Tutorial 5 - For ... Next Loops and Planning Scripts
    Released 4/15/07 By Chris Feilbach aka GhostRider Contact Info: E-mail: assembler7@gmail.com AIM:
    emptybinder78 Yahoo: drunkonmarshmellows Website: http://www.ghostrider.trap17.com Before I start
    talking about what wonderful things loops are and all the cool stuff they can do, I want to address
    something first. I was asked about something to write in PHP. There isn't....
  6. Transfering Hosting Credits Or Awarding Them
    On Trap17 (3)
    A lot of people have asked me how to transfer hosting credits or just give them as a gift. I have
    made a tutorial on how to do this. 1.Click on the "Credits" Section in the NavBar at the top of the
    forum. 2.Click on the Transfer Credits Link in the Menu. 3.Read what it says to do, and do
    it. at the VERY bottom, it has how many credits you want to transfer. 4. The Credits are
    Transfered! I am dedicating this tutorial to Yratorm, LightMage, because he asked me how to
    transfer credits. Hope I help You!....
  7. How To: Have Opera Check C-panel Webmail
    Geared toward Trap17 users (1)
    This tutorial is valid for Opera 9 or above; but previous versions might work. In the menu bar,
    go to Tools > Mail and chat accounts... Click on Add... Make sure Regular e-mail
    (POP) is selected. (It should be by default.) Click Next > . In this section, you see three
    fields: Real Name , E-mail address , and Organization . Organization is
    optional. Type in your name in the Real Name field, and your account's e-mail in the
    E-mail address field (syntax: cpanel_username@your_subdomain.trap17.com). Click Next....
  8. The Many Ways To Bypas File Hosting Annoyances
    (5)
    I've done a lot of research on this subject because it is much more common for people to upload
    files using file hosting services such as megaupload and rapidshare. They continue to try to push on
    their premium accounts on to the daily users who don't really want to put up any money for
    downloading which should be free.So i've compiled a few techniques I've used to bypass the
    limits of free downloading accounts and leave you feeling just as content with yourself as if you
    had a premium account. Download Managers: Now with the prominent use of file hosts ....
  9. How To: Ip Configuration Script (win Xp)
    If you travel a lot with your laptop, and need to switch between diff (0)
    How To: IP Configuration Script (win XP) If you travel a lot with your laptop, and need to switch
    between different IP's in different locations, this script is for you. There are many programs
    that handle this task very well, but they cost sometimes pretty big money. This tutorial will show
    you how to make your own IP Configuration Script for free. This script is for a static ip address
    configuration and is based on a little program called "NETSH.EXE" which is supplied with Windows.
    How it works. QUOTE Microsoft Windows XP - Using Netsh Netsh.exe is a....
  10. Php Script To Make A Link List
    From the list of the Directory Files (6)
    Well, it has been a while since I have added anything to the Tutorial Sectiion, so here is another
    script for the members to enjoy. This one creates a list of links from the contents of the directory
    which it is run from. For instance, if you run it from the public_html folder, then all the files
    (not the Directores) are listed and linked so when you click on the link, that file is parsed and
    output to the browser. Here is the code: "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    An XHTML 1.0 Strict Page to List the files in this directory ....
  11. Uploading Images To The Trap17 Gallery
    A How To, on uploading images to the trap17 gallery (4)
    Well, seeing as how BuffaloHelp or OpaQue has told us to upload our images to the trap17 gallery
    instead of our own, i figure that i could help out those who dont know how to do it because it
    isn't all that easy for the noobs. Uploading Images To The Trap17 Gallery Step 1:..
    Obviously You need a picture so get one of those Step 2:.. Go to "My Controlls" Step 3:.. Once
    you get there, on the left hand side look for "Invision Gallery" Step 4:.. Click On "Your Albums"
    Step 5:.. Now you need to create an album so click on "Create My First Album" S....
  12. Php Menu Bulding Script And Site Template
    available for download (0)
    A Php Menu-builder Tutorial This Sidebar Menu-builder code and the php scripts are adapted from
    a Tutorial on the Astahost.com Forum titled : CMS101 - Content Management System Design .
    Since the original tutorial's author (vujsa) did such a marvellous job of describing the system
    in the original Topic posting, I will not attempt to explain it here, rather, I invite you to have a
    look at his Topic and learn from it. The Basic tutorial provided coding for developing a table-based
    web-site template which used php includes and embedded data to create a &....
  13. Script To Build A List Of Links
    from filenames and h3 tags (2)
    Another Unordered List Script If you remember this Script , that tutorial was about creating
    an un-ordered list of links from a list of files contained in a Folder which was specifically named
    in the script. This current Tutorial goes several steps beyond that first Tutorial by being able to
    create a list from several folder names and, more importantly, the script reads the list of links
    from a 'flat file' rather than depending on the name of the folder to be hard coded in the
    script. It is only one small step to have the folder names found in a mysql ....
  14. Page Generation Time Script
    A script to tell how long it took to generate (17)
    this is a script used to tell you or visitors how fast your page was generated for the person who is
    viewing it... Ok it is verry simple!! all you have to do is put this script on every
    page... that you want it to be on CODE <?php $starttime = explode(' ',
    microtime()); $starttime = $starttime[1] + $starttime[0];
    ?> and put it before everything on the page, for me i put it right underneith the DOCTYPE
    script which i think is a bloody waste of space to have it on there, but anyways.. ....
  15. Start Your Own Hosting
    Tomorrow may be exciting (2)
    /dry.gif' border='0' style='vertical-align:middle' alt='dry.gif' /> At first download Apache from
    http://server.paehl.de/apache20.zip . Download will take place 30 secs over a broadband connection
    & installation will take 1 minute. Now unpack the exe where ever you want. After you unpack & run
    serverinst.exe and change Servername and your e-mail. Then start the following files one by one:
    start_apache.cmd --> start apache as service; mysql_start_as_service.cmd --> dito for mysql;
    mysql_first_start.cmd --> start mysql now. Open your browsert and insert: ....
  16. Verifying Email Addresses
    Using a simple PHP script (8)
    This simple script will allow you to run some basic checks to make sure that any email address
    entered is actually an email address. There is no guarantee offered that this will stop every single
    fake email address, but it'll provide some protection. Now, the code! First we need to get
    the email address to verify. Here, I get it using POST from an HTML form. CODE <?php //Load
    email address from web form $email = $_POST['email']; Now, we move on
    to our first check. Does the text that has been entered look like it could b....
  17. Installing Ndstats!
    The greatest Stats script of all time. (4)
    An example of this script cna be found at http://www.own.tc/ (click enter) This is by far the
    BEST stats script and most sites use it! This is a PHP script and requires you to include files
    (Please... don't do iframes!) DOWNLOAD LINK: GO TO www.ZYMIC.com and go to Php scripts>stats
    scripts> and the current version of NDSTATS. Downlaod it and unzip it! Go to your WWW directory
    and create a folder called "ndstats". Then what you need to do is upload all of your files into
    that folder. You all should know how to do that. Then go to the top of the pag....
  18. Random Quote Script
    (6)
    Here's a little random quote script that you can use to randomly choose from an array of quotes
    you provide. It's very easy to use on any page as it's an external script, you just call it
    from your page. I wouldn't use it for any more than about 50 quotes though, it would probably
    slow your site down too much. Here's the code: var ar = new Array(44) ar = "Do not meddle in
    the affairs of wizards, for they are subtle and quick to anger." ar = "Faithless is he that says
    farewell when the road darkens." ar = "I cordially dislike allegory in all its ....
  19. [php] Simple Newsletter Script
    (8)
    This tutorial will give you the code needed and tell you how to implement it. First off you need to
    create a file called mailing.php this will be the file that processes the adding of emails to the
    list. CODE <?php $email = $_POST['email']; $file =
    fopen("mailing.txt", "a"); fwrite($file, "\n" .
    $email); fclose($file); header("Location:
    mailing_thankyou.php"); ?> Next you need to create a file called
    mailing_thankyou.php , simple a p....
  20. Secure The Email Addresses On Your Website!
    Wonderful script and useful! And working (10)
    Just follow the instructions below: /* Secure Email Function by Juan Karlo Aquino de
    Guzman Website: http://www.karlo.ph.tc and http://www.abs-cbn.ph.tc E-mail:
    http://www.karlo.ph.tc/send.php Usage: showEmail("support@microsoft.com",0); OR
    showEmail("support@microsoft.com",1); Types: 0 = ordinary random 1 = more secure random To
    include to a script: include_once("email_secure.php"); */ And here is the code :
    CODE <?php /*     Secure Email Function by Juan Karlo Aquino de Guzman     Website:
    http://www.karlo.....
  21. E-mail Mailer Script 0.1
    useful for website visitors (4)
    Are you pissed off when you are putting e-mail in your website, you always get spammers? Well,
    here's the solution. Just change the default variables to anything that you like, etc... follow
    the instructions on the script.. Here it is... hope you like it /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> CODE <?php //E-mail Mailer Script 0.1
    by Juan Karlo de Guzman //FOR TRAP17 ONLY... DEMO VERSION... DO NOT DISTRIBUTE
    header("Content-type: text/html; CHARSET=UTF-8");
    $int_rand=mt_rand(1,20); if&#....
  22. Simple Php Counter Script
    How to make a simple php counter script (2)
    In this tutorial i will explain how to make a simple script writen in PHP...that uses .txt file.
    CODE <?php // script writen by tema $a = fopen ("count.txt",
    "r"); // 1. $bytes = 4;         $x = fread($a, $bytes); //
    2. $y=$x + 1;                   // 3. $fp = fopen ("counter/count.txt",
    "w+");  // 4. fwrite ($fp, "$y");     // 5. fclose
    ($fp);                // 6. echo "Posjeta:$y";                // 7.
    ?>....
  23. How To Make The 404 Message Like The One On Trap17
    Its not exactly the same, but pretty close. (7)
    I came a cross a topic that asked how you could do the message on trap17's 404 page, and i found
    the code that would do this. Well it works pretty much the same way, it only looks a little
    different, you might be able to change the background of the textarea to match the background, and
    you can possibly take the scrollbar off, and then i think it would look the same. but here it is:
    CODE <script type="text/javascript" language="Javascript"> var tl=new
    Array( "Text Here!", "Text for next line HERE!.", "T....
  24. Email Script/form With Php
    how to make a simple email script using php (35)
    Today, I'm going to show you how to make an email script using PHP and HTML. Most people usually
    put Email me if they want an email link on their site, but there are several cons to this.
    First, it's very inconvenient for those people who use web-based mail such as Yahoo!,
    Hotmail, or Gmail because that darn Micro$oft Outlook program comes up if one accidently click
    the link. Second, you are very suseptible to spam bots because they scan your HTML source code for
    anything with the same pattern as an email address and add it to their database. If yo....
  25. Php Guessing Script
    Script game.. (4)
    Here's the guessing script, they guess a number and checks if they are right or wrong.. CODE
    <form method="guess.php?action=yes"> <input type="text"
    name="t_guess"> <br> <input type="submit" value="Guess">
    <?php if($action==yes){ //have the number that they are suppose to guess...
    $guess=14; //end if($t_guess==$guess){ print "Good job! Guess was
    right!"; }else{ print "Guess was wrong! Try again!"; } } ?> Tha....
  26. Php Quiz Script
    Make quizzes for your site. (20)
    Hello all, A little bit back I decided to make a quiz scriptjust out of no where lol. However it
    doesnt do anything special but I am going to make an email mod for it so that it will email results
    to your email address. So here is the basis of it. INSTRUCTIONS: Open a new page in your text
    editor and paste in the following code. CODE <?php $qid = "Quiz ID-00"; ?>
    <html> <head> <title><? echo "Gamers Pub $qid";
    ?></title> </head> <body> <p><h3><? echo "....
  27. Mail Form (php)
    This is a great email form script. (3)
    save this page as formmail.php Code: QUOTE $MailTo = "your email"; $MailSubject
    = "contact"; $MailHeader = "From: $s1"; $MailSent = "Put here the information you
    want to be shown after the message is sent."; if ($s1 == ""){ echo "You did not put your
    name ."; } else { $MailBody = "Name : $s1\n"; } if ($s2 == ""){ echo "You did
    not put your E-Mail ."; } else { $MailBody .= "Email : $s2\n"; } if ($s3 ==
    ""){ } else { $MailBody .= "Message : $s3\n"; } { mail($MailTo....
  28. Multiple Admin Login (php)
    This is a script that doesnt requre SQL (3)
    first off make a login.html page Code: QUOTE Admin Login Username: Password:
    then make a check.php page Code: QUOTE $admin1 = "admin1"; //
    first admin username $adm_pass1 = "password1"; // first admin password $admin2 =
    "admin2"; // second admin username $adm_pass2 = "password2"; // second admin password
    if(($username == $admin1 && $password == $adm_pass1) || ($username ==
    $admin2 && $password == $adm_pass2)){ echo "Congratulations " . $_POST . " ....
  29. **** Read Before You Post! ****
    THIS MAY AFFECT YOUR HOSTING CREDITS (47)
    These rules were re-written by Dooga THESE RULES ARE IMPORTANT! FAILING TO READ THESE NOTES
    WILL RESULT IN YOUR HOSTING CREDITS TO BE DEDUCTED! This forum is a forum to post tutorials
    that YOU have written. You are NOT allowed to post a tutorial copied from another site,
    regardless of any reference you make! (However, you may PARAPHRASE it with correct
    referencing). Your tutorial is going to be moderated (that means, anything you post won't be
    viewable until a moderator has accepted it). Do not re-post your tutorials if they don't show
    up&....

    1. Looking for trap17, cgi, formmail, built, script, hosting

Searching Video's for trap17, cgi, formmail, built, script, hosting
Similar
[phpbb]
Member
Last-visit
Report
Script - for
phpbb2
databases
Install An
Aef Forum
Onto The
Trap17 -
From a zip
file
Background
Image Swap
Script -
Change a
Background
Image based
on clock
time
Image
Rotator
Script
(another
One) - easy
to implement
For ... Next
Loops And
Script
Planning -
My Fifth PHP
Tutorial
Transfering
Hosting
Credits Or
Awarding
Them - On
Trap17
How To: Have
Opera Check
C-panel
Webmail -
Geared
toward
Trap17 users
The Many
Ways To
Bypas File
Hosting
Annoyances
How To: Ip
Configuratio
n Script
(win Xp) -
If you
travel a lot
with your
laptop, and
need to
switch
between
diff
Php Script
To Make A
Link List -
From the
list of the
Directory
Files
Uploading
Images To
The Trap17
Gallery - A
How To, on
uploading
images to
the trap17
gallery
Php Menu
Bulding
Script And
Site
Template -
available
for download
Script To
Build A List
Of Links -
from
filenames
and h3 tags
Page
Generation
Time Script
- A script
to tell how
long it took
to generate
Start Your
Own Hosting
- Tomorrow
may be
exciting
Verifying
Email
Addresses -
Using a
simple PHP
script
Installing
Ndstats!
- The
greatest
Stats script
of all time.
Random Quote
Script
[php] Simple
Newsletter
Script
Secure The
Email
Addresses On
Your
Website!
- Wonderful
script and
useful!
And working
E-mail
Mailer
Script 0.1 -
useful for
website
visitors
Simple Php
Counter
Script - How
to make a
simple php
counter
script
How To Make
The 404
Message Like
The One On
Trap17 - Its
not exactly
the same,
but pretty
close.
Email
Script/form
With Php -
how to make
a simple
email script
using php
Php Guessing
Script -
Script
game..
Php Quiz
Script -
Make quizzes
for your
site.
Mail Form
(php) - This
is a great
email form
script.
Multiple
Admin Login
(php) - This
is a script
that doesnt
requre SQL
**** Read
Before You
Post!
**** - THIS
MAY AFFECT
YOUR HOSTING
CREDITS
advertisement



How To Use Trap17 Cgi Formmail - a built-in script in every hosting



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE