#!/usr/bin/perl ############################################ ## ## ## Links Mangement Script ## ## last modified: 20/Oct/2003 ## ## copyright (c) 2002-3 ## ## ## ## Developed by Kaviraj Kodai ## ## www.eDesignParadigm.com ## ## (scripts@edesignparadigm.com) ## ## ## ## For Larry Sullivan ## ## www.linking101.com ## ## (larry@linking101.com) ## ## ## ################################################################ # COPYRIGHT (C) 2003 WWW.LINKING101.COM. ALL RIGHTS RESERVED # ################################################################ # Copyright Notice # # ---------------- # # This program is a commercial product and must NOT be copied, # # modified, distributed, or installed without a user license # # from http://www.linking101.com. Any modification of the # # script without the written consent of Larry Sullivan is # # strictly prohibited. You may not remove any of these header # # notices. By using this code you agree to indemnify the author# # from any liability that might arise from it's use. # ################################################################ ################################################################ # DO NOT EDIT ANYTHING BELOW # ################################################################ use CGI qw (:standard); use CGI::Carp qw(fatalsToBrowser); require "config.cgi"; &configure; $maintitle = "Add your link!"; open (FILE1, "$header"); @header= ; close(FILE1); open (FILE2, "$footer"); @footer = ; close(FILE2); print "Content-type: text/html\n\n"; print "@header

$maintitle

Before filling out this form,please make sure our
link (the information provided below) is up and active
on your site or links page.
This is a text based reciprocal links program.

Title:
$sitename
URL:
$website
Description:
$descript

Once that is done, fill out the following form COMPLETELY to add your link.The information you submit will be added to a database, reviewed, and if accepted, added to the links page.

Your name:

Your Email:
Location of your link:
Web Site Title
Your Description:
(250 characters max)
Category of your website
Location of our link

 

@footer"; exit; sub error{ $message = shift(@_); print "Content-type: text/html\n\n"; print < Error
$message
html_ exit; } # end of script