* Website: http://www.giuseppecalbi.com * * License: this script is free. I will be pleased if you put a link to http://www.giuseppecalbi.com * or http://www.giuseppecalbi.com/scripts at the end of the pages that use this script, or in a credit section * or links section * * I suggest you to insert a small line at the end of each page that uses this script: * * remember to give the page the extension name .php and to insert the full url of the script in case * it is in a different folder. * Only after this you could be automatically alerted for new updates **/ /** * Configuration file * * With this file you can choose execution option for the programm. * How to do? It's simple, you only have to modify the data below. * Keep attention to change only the text between " ". **/ /** * Name and email of sender shown in the received email. It will be shown like is: "Name " **/ $mittente = "Website Contact "; /** * Names and email addresses that will receive the form data * If you want more than one addressee, insert all of them using a comma to separate them like this * ex. $destinatari = "Joe Black , Tim White "; **/ $destinatari = "Millennium PCA Info "; /** * Subject of the received email **/ $oggetto = "Website Form"; /** * Page to be automatically redirected after some seconds of confirmation page * Write the page address between the " ". If no page is selected, you will receive only a confirmation message **/ $paginaConferma = "http://acadianacourierlimo.com/index.htm"; /** * Text/Message (can be html) to be shown as head of the confirmation page **/ $messaggioConferma = "
Your Information Submitted Successfully!

Please Wait And You'll Be Automatically Redirected Back To The Main Website
If anything in your form was incorrect, simply send another.

"; /** * Page to be automatically redirected after some seconds of error page * Write the page address between the " ". If no page is selected, you will receive only a confirmation message **/ $paginaerrore = "http://www.acadianacourierlimo.com"; /** * Text/Message (can be html) to be shown as head of the error page **/ $messaggioErrore = "
Error
Please wait while we return you to the form or click your back button now!!

"; /** * Text/Message (can be html) to be shown as head of the error page due to required fields missed **/ $erroreCampiMancanti = "
Missed Fields
You must fill in all the required fields
Go to the previous page and complete the form again

"; /** * Prefix to identify the REQUESTED FIELDS. You can change this prefix. To be a field required put this prefix beside the input name. * ex. I want the field "email" to be mandatory. I call it "_rrr_email". . This prefix will be automatically removed by the program, therefore think to the * input name without the prefix configuring the rest of this file. **/ $reqTag = "_rrr_"; /** * Specify the name of a field in the form for sender's email address. Ex. if the form contains you should set "emailaddress" the field below **/ $emailField = "email"; /** * Specify the name of a field in the form for sender's email body. Ex. if the form contains you should set "new_proposte" as below. * This value will be shown in the email body with the "body" ($oggetto) specified previously. If you want to see as body only this field, please delete $oggetto **/ $subjectField = "subject1"; /** * Specify one or more fields to use as sender name. * Ex. if in the form i use and you should define "name" and "surname" as below. * Please use a , between each setting and remeber to use " " **/ $senderNames = "name"; /** * If this option is set to 1, the confirmation page will show all the data inserted. If set to 0 it will print only the confirmation message without the data **/ $mostraInputinConferma = 1; /** * If set to 1, email will be sent in graphic html, is set to 0 will be sent in text mode **/ $html = 1; /** * If set to 1, all the html tags for the inputs will be hidden before the print out. It is possible to specify which tag to allow. If it is 0 every html tag will be allowed **/ $stripsHtml = 1; /** * Specify which html tag is allowed in case the previous setting is set to 1 **/ $tagAllowed = "
"; ?>