Jul 6, 2008

Form Not Returning Correct Email Address

Free Web Hosting, No Ads > General > Hosted Members Area

free web hosting

Form Not Returning Correct Email Address

mrdee
I have just noticed another side effect of the recent server migration.
On my web site I have a comment form.
After filling in the form the user gets a confirmation email and I get an email to tell me someone filled in the form, and showing me the data that were filled in.

First of all, I got all emails twice, but I think I managed to fix that in the PHP code.
What is worse, though, the user still gets his/her confirmation and thank you email, but, instead of my email address, the From: field now gives an aaddress on the server my account is on, ie. the gamma server.

Does anyone know how I can fix this problem?
Please tell me I do not have to fiddle around with the PHP to do that (I only have basic knowledge, made the form with Coffeecup Webform maker).
I hope I can do it with changing settings in my Cpanel.
Any help will be much appreciated.

Reply

jlhaslip
If you could post the code here, perhaps someone can see what is going wrong and fix it.
Without the code, we don't stand a chance of fixing it.

Reply

truefusion
"From" is a header that is sent when using the mail function of PHP. Check out example #2 found here: PHP: mail. I'm assuming that your Coffeecup Webform maker asked you to provide your e-mail and used that for the header.

Reply

mrdee
I have had a look at the example, still looks a bit too complicated to me to find a solution.
Funy thing is, it all worked perfectly before the server migration, so I never suspected the PHP to be at fault.
Anyway, here is the code:
CODE
<?php
/**
* CoffeeCup Flash Form Builder: Form Results Handler
*
* This file is in charge of handling the form results
* posted from the CoffeeCup Flash Form Builder SWF.
* It has several primary functions:
*
* - Assure that the user is running the proper version of
* PHP and has properly configured their server for
* CoffeeCup Flash Form Builder by uploading the provided
* files and assigning the appropriate server settings
* and permissions.
* - Upload a file if the '$_FILES['Filedata']' variable is
* populated
* - If the '$_POST' superglobal array has been populated,
* process the form by:
* - Reading the config file provided in the '$_POST['xmlfile']'
* variable.
* - Saving the form data to a file if the 'CC_FB_SAVE_FILE' constant
* has been populated.
* - Saving the form data to the database provided in 'CC_FB_DB_ADDRESS'
* if the 'CC_FB_DB_ADDRESS' constant is populated.
* - Emailing the form data to the form owner via the address provided
* in the '$_POST['_ALT_EMAIL']' variable or the '$_POST['mailto']'
* variable if the '$_POST['_ALT_EMAIL']' variable is not populated.
* - Emailing the form data to the form user via the address provided in
* the '$_POST['eM']' variable if the '$_POST['eM']' variable has been
* populated and the 'emailuser' config option is set to 'true'.
* - Taking the form user to the landing page provided in the
* '$_POST['thankyoupage']' variable or to a default landing page
* if the '$_POST['thankyoupage']' is empty.
* - Prints out an informational page with version numbers and release
* dates if an error occurs or if this script is called without
* the '$_POST' superglobal or the '$_FILES['Filedata']' variables
* being set.
*
* @license http://www.coffeecup.com/legal/eula.html
* @author Jeff Welch <jw@coffeecup.com>
* @version 4.0
* @package CC_FB
*/

// Error reporting should be disabled in favor of
// our customer error messages.
error_reporting(0);

/**
* The version of CoffeeCup Flash Form Builder that
* generated this script.
*/
define('CC_FB_VERSION', '7.1');
/**
* The release date of the version of CoffeeCup Flash Form
* Builder that generated this script.
*/
define('CC_FB_LAST_UPDATED', '08/31/2007');

/**
* The version of this script.
*/
define('CC_FB_SCRIPT_VERSION', '4.0');
/**
* The release date of this script.
*/
define('CC_FB_SCRIPT_LAST_UPDATED', '09/07/2007');

/**
* The required PHP version for this script.
*/
define('CC_FB_PHP_VERSION', '4.3.0');

/**
* Will the owner of this form be emailed the
* form data
*/
define('CC_FB_TO_EMAIL',true);
/**
* To default To address.
*/
define('CC_FB_TO_EMAIL', 'webbie@vlaanderen-flanders.org.uk');
/**
* The default CC address.
*/
define('CC_FB_CC_EMAIL', 'info@vlaanderen-flanders.org.uk');
/**
* The default BCC address.
*/
define('CC_FB_BCC_EMAIL', '');

/**
* If we should send a message back to the user.
*/
define('CC_FB_AUTO_REPLY', true);
/**
* The subject of the message to be sent to the user.
*/
define('CC_FB_AUTO_REPLY_SUBJECT', 'Bedankt');
/**
* If we should include the form results
* in the message we send to the user.
*/
define('CC_FB_AUTO_REPLY_FORM_RESULTS', true);
/**
* The position of the auto-reply message
* in the email.
*/
define('CC_FB_AUTO_REPLY_POSITION', 'bottom');

/**
* The page to redirect to after the form is submitted.
*/
define('CC_FB_RESULTS_REDIRECT', 'http://www.vlaanderen-flanders.org.uk/index.htm');

/**
* The address of the database where the form results
* will be saved.
*/
define('CC_FB_DB_ADDRESS', '[ADDRESS]');
/**
* The port number of the database where the form results
* will be saved.
*/
define('CC_FB_DB_PORT', '[DBPORT]');
/**
* The username for the database where the form results
* will be saved.
*/
define('CC_FB_DB_USERNAME', '[DBUSER]');
/**
* The password for the database where the form results
* will be saved.
*/
define('CC_FB_DB_PASSWORD', '[DBPASS]');
/**
* The name of the database where the form results
* will be saved.
*/
define('CC_FB_DB_NAME', '[DBNAME]');

/**
* The file to log the form results to if necessary.
*/
define('CC_FB_SAVE_FILE', '[FILENAME]');

/**
* The filetypes that are acceptable for file uploads.
*/
define('CC_FB_ACCEPTABLE_FILE_TYPES', 'txt|gif|jpg|jpeg|zip|doc|png|pdf|rtf');
/**
* The directory where files are uploaded
*/
define('CC_FB_UPLOADS_DIRECTORY', 'files');
/**
* The extension that gets added to file uploads
*/
define('CC_FB_UPLOADS_EXTENSION', '_fbu');
/**
* Will we save the file uploads to the server
*/
define('CC_FB_ATTACHMENT_SAVETOSERVER',false);
/**
* Will we save the file uploads to the db
*/
define('CC_FB_ATTACHMENT_SAVETODB',false);
/**
* Will we send the file upload as an attachment
*/
define('CC_FB_ATTACHMENT_ADDTOEMAIL',true);
/**
* Sendmail Message EOL's
*/
define('CC_FB_SENDMAIL_EOL',"\r\n");

// Makes sure that the user is using the required version
// of PHP as specified by {@link CC_FB_PHP_VERSION}.
if(!version_compare(PHP_VERSION, CC_FB_PHP_VERSION, '>='))
{
printMessage('Invalid PHP Version',
"We're sorry but CoffeeCup Form Builder requires PHP version " .
CC_FB_PHP_VERSION . ' or greater. Please contact your server ' .
'administrator.');
}
// Strip slashes if the server has magic quotes enabled.
if(get_magic_quotes_gpc())
{
$_POST = array_map("stripslashes", $_POST);
}
// John will need to fix this in the swf file.
foreach($_POST as $key => $value)
{
$_POST[str_replace('_', ' ', $key)] = $value;
}

// If the '$_FILES['Filedata']' is populated, process the
// file upload.
if(isset($_FILES['Filedata']))
{
processFileUpload();
}
// If the '$_POST' superglobal array is populated,
// process the form results.
elseif(is_array($_POST) && count($_POST) > 0)
{
processMailForm();
}
// If all else fails, print out a blank page with version
// numbers and release dates.
printMessage();


/**
* Process the mail form results.
*
* This method is in charge of processing the mail form which
* is posted from the CoffeeCup Flash Form Builder SWF. This
* process includes:
*
* - Retrieving the preferences from the included CoffeeCup Flash
* Form Builder XML preferences file.
* - Formats output for file output as well as for an email to
* the form user and the form owner as necesarry.
* - Writes output to a file and sends it to the form user and
* the form owner as necessary.
* - Writes form results to a database if necesarry.
*/
function processMailForm()
{
fixUploadedFileName();
$preferences = getPreferences();

foreach($preferences['form_fields'] as $key => $value)
{
$email_response .= "$key: {$_POST[$key]}" .
CC_FB_SENDMAIL_EOL . CC_FB_SENDMAIL_EOL;
$form_response .= "$key: {$_POST[$key]}<br/>\n";
$txt_file .= "$key: {$_POST[$key]}|";
}

// If a file was uploaded, add the appropriate data to the response
// fields
if($_POST['Uploaded_File'] != "")
{
$email_response .= "Uploaded File: {$_POST['Uploaded_File']}" .
CC_FB_SENDMAIL_EOL . CC_FB_SENDMAIL_EOL;
$form_response .= " Uploaded File: {$_POST['Uploaded_File']}" .
"<br/>\n";
$txt_file .= "Uploaded File: {$_POST['Uploaded_File']}|";
}

sendResponseEmails($email_response, $preferences);
writeResponseToFile($txt_file);
writeResponseToDatabase($preferences);

// Make sure we delete the file from the server if the user doesn't
// want it
if(!CC_FB_ATTACHMENT_SAVETOSERVER && $_POST['Uploaded_File'] != '')
{
@unlink(CC_FB_UPLOADS_DIRECTORY . "/{$_POST['Uploaded_File']}");
}

printResponsePage($form_response, $preferences);
}


/**
* Send response emails to the appropriate recipients.
*
* Sends an email to the scripts owner as well as the end-user
* if appropriate. If the sending of mail fails, an error
* message will be printed out to the screen.
*
* @param string $email_response the default contents to mail to the user.
* @param array $preferences the CoffeeCup Flash Form Builder Preferences.
*/
function sendResponseEmails($email_response, $preferences)
{
// If the program is unregistered, add the unregistered message.
if($_POST['unreg'])
{
$unreg = "------------------------" .
CC_FB_SENDMAIL_EOL . CC_FB_SENDMAIL_EOL .
"This Form was sent to you using CoffeeCup Form Builder." .
CC_FB_SENDMAIL_EOL . "Please tell a " .
"friend about us: http://www.coffeecup.com/form-builder/";
}

// Set up the CC field if necessary
if(CC_FB_CC_EMAIL != '')
{
$cc = 'Cc: ' . CC_FB_CC_EMAIL . CC_FB_SENDMAIL_EOL;
}

// Set up the BCC field if necessary
if(CC_FB_BCC_EMAIL != '')
{
$bcc = 'Bcc: ' . CC_FB_BCC_EMAIL . CC_FB_SENDMAIL_EOL;
}

// Use the alternative email if one is provided
$mail_to = ($_POST['_ALT_EMAIL'] != '' ? $_POST['_ALT_EMAIL'] :
CC_FB_TO_EMAIL);

// Set a default subject if one is not provided provided
$subject = ($_POST['subject'] != '' ? $_POST['subject'] :
'Form Submission');

// Set up the default mail headers
$headers = 'MIME-Version: 1.0' . CC_FB_SENDMAIL_EOL .
'Content-Type: text/plain; charset=utf-8' . CC_FB_SENDMAIL_EOL .
'Content-Transfer-Encoding: 7bit' . CC_FB_SENDMAIL_EOL;

// Set up the default owner message
$form_owner_msg =
'Here is the information submitted to ' .
"{$_SERVER['SERVER_NAME']}{$_SERVER['PHP_SELF']} from " .
"{$_SERVER['REMOTE_ADDR']} on " . date("l, F dS, Y \a\\t g:i a") .
"." . CC_FB_SENDMAIL_EOL . "------------------------" .
CC_FB_SENDMAIL_EOL . "$email_response$unreg" .
CC_FB_SENDMAIL_EOL. CC_FB_SENDMAIL_EOL;

// Add the uploaded file as an attachment if the user has
// request we do so
if(CC_FB_ATTACHMENT_ADDTOEMAIL && $_POST['Uploaded_File'] != '')
{
if(!($contents =
file_get_contents(CC_FB_UPLOADS_DIRECTORY .
"/{$_POST['Uploaded_File']}")))
{
printMessage('Unable To Open Attachment File',"We're sorry but " .
'we were unable to open your uploaded file to attatch it for ' .
'email. Please be sure that you have the proper permissions.');
}

$attachment = chunk_split(base64_encode($contents));

// Setup the unique mime boundary
$mime_boundary = md5(time());

// Set up the form owner mail headers
$form_owner_headers = 'MIME-Version: 1.0' . CC_FB_SENDMAIL_EOL .
'Content-Type: multipart/mixed; ' .
"boundary=\"$mime_boundary\"" .
CC_FB_SENDMAIL_EOL. CC_FB_SENDMAIL_EOL;

// Set up the new form owner message
$form_owner_msg =
"--$mime_boundary" . CC_FB_SENDMAIL_EOL .
'Content-Type: text/plain; charset=utf-8' . CC_FB_SENDMAIL_EOL .
'Content-Transfer-Encoding: 7bit' .
CC_FB_SENDMAIL_EOL. CC_FB_SENDMAIL_EOL .
$form_owner_msg .
"--$mime_boundary" . CC_FB_SENDMAIL_EOL .
'Content-Type: application/octet-stream ' .
"name=\"{$_POST['Uploaded_File']}\"" . CC_FB_SENDMAIL_EOL .
"Content-Transfer-Encoding: base64" . CC_FB_SENDMAIL_EOL .
"Content-Description: {$_POST['Uploaded_File']}" .
CC_FB_SENDMAIL_EOL .
"Content-Disposition: attachment; " .
"filename=\"{$_POST['Uploaded_File']}\"" .
CC_FB_SENDMAIL_EOL . CC_FB_SENDMAIL_EOL .
"$attachment" . CC_FB_SENDMAIL_EOL. CC_FB_SENDMAIL_EOL;
"--$mime_boundary--" .
CC_FB_SENDMAIL_EOL . CC_FB_SENDMAIL_EOL;
}
else
{
$form_owner_headers = $headers;
}

// If we collected the end-user's email
if($_POST['eM'])
{
// Send a message to the form's owner with the end-user's email
// as the reply-to address.
if(CC_FB_DO_EMAIL && !(mail($mail_to,$subject,
$form_owner_msg,
"Reply-To: {$_POST['eM']}" . CC_FB_SENDMAIL_EOL .
"Return-Path: {$_POST['eM']}" . CC_FB_SENDMAIL_EOL .
"From: {$_POST['eM']}" . CC_FB_SENDMAIL_EOL .
"$cc$bcc" .
'Message-ID: <' . time() . "-{$_POST['eM']}>" . CC_FB_SENDMAIL_EOL .
'X-Mailer: PHP v' . phpversion() . CC_FB_SENDMAIL_EOL .
$form_owner_headers)))
{
printMessage('Unable To Send E-Mail',
"We're sorry but we were unable to send your e-mail. " .
'If you are sure that you entered all your email ' .
'addresses properly, you should contact your server ' .
'administrator.');
}

// If necesarry, send a message to the end-user as well.
if(CC_FB_AUTO_REPLY)
{
$auto_reply_msg = 'Hallo,
wij hebben Uw reaktie ontvangen en zullen er rekening mee houden.
Indien nodig nemen wij contact met U op.
Nogmaals bedankt.
Hartelijke Vlaamse groeten,
http://www.vlaanderen-flanders.org.uk
info@vlaanderen-flanders.org.uk';

if(CC_FB_AUTO_REPLY_FORM_RESULTS)
{
$form_user_msg = $email_response;

if(CC_FB_AUTO_REPLY_POSITION == 'top')
{
$form_user_msg = $auto_reply_msg .
CC_FB_SENDMAIL_EOL . CC_FB_SENDMAIL_EOL .
$form_user_msg;
}
else
{
$form_user_msg .= $auto_reply_msg .
CC_FB_SENDMAIL_EOL . CC_FB_SENDMAIL_EOL;
}
}
else
{
$form_user_msg = $auto_reply_msg;
}

mail($_POST['eM'],CC_FB_AUTO_REPLY_SUBJECT,
"$form_user_msg$unreg",
"Reply-To: $mail_to" . CC_FB_SENDMAIL_EOL .
"Return-Path: $mail_to" . CC_FB_SENDMAIL_EOL .
"From: $mail_to" . CC_FB_SENDMAIL_EOL .
'Message-ID: <' . time() . "-$mail_to>" .
CC_FB_SENDMAIL_EOL .
'X-Mailer: PHP v' . phpversion() . CC_FB_SENDMAIL_EOL .
$headers);
}
}
// Send a message to the form's owner.
elseif(CC_FB_DO_EMAIL && !(mail($mail_to,$subject,
$form_owner_msg,
'From: CoffeeCup Flash Form Builder ' .
"<formbuilder@{$_SERVER['SERVER_NAME']}>" . CC_FB_SENDMAIL_EOL .
"$cc$bcc" .
'Message-ID: <' . time() .
"-formbuilder@{$_SERVER['SERVER_NAME']}>" . CC_FB_SENDMAIL_EOL .
'X-Mailer: PHP v' . phpversion() . CC_FB_SENDMAIL_EOL .
$form_owner_headers)))
{
printMessage('Unable To Send E-Mail',
"We're sorry but we were unable to send your e-mail. " .
'If you are sure that you entered all your email ' .
'addresses properly, you should contact your server ' .
'administrator.');
}
}


/**
* Gets the real name of the file that was uploaded.
*
* Since the file upload occurs in a different request,
* this method helps us resolve what the name of the
* uploaded file was in case it was renamed.
*/
function fixUploadedFileName()
{
if($_POST['Uploaded_File'] != '')
{
$extension = substr($_POST['Uploaded_File'],
strrpos($_POST['Uploaded_File'], '.'));
$basename = basename($_POST['Uploaded_File'], $extension);

while(file_exists(CC_FB_UPLOADS_DIRECTORY . "/$basename".
CC_FB_UPLOADS_EXTENSION . "$i$extension"))
{
$new_upload_name = "$basename". CC_FB_UPLOADS_EXTENSION .
"$i$extension";
$i++;
}

}
$_POST['Uploaded_File'] = $new_upload_name;
}


/**
* Write form response to a database.
*
* Writes the form response to the database specified at 'CC_FB_DB_ADDRESS'
* if appropriate. If the database doesn't it exist, the form_results
* table doesn't exist or if the form_results table doesn't comply with
* the structure of the current form then the database will be restructured
* accordingly.
*
* @param array $preferences the CoffeeCup Flash Form Builder Preferences.
*/
function writeResponseToDatabase($preferences)
{
// If the CC_FB_DB_ADDRESS constant has been populated, then
// the user wants to write their data to a database.
if(CC_FB_DB_ADDRESS != '[ADDRESS]')
{
// First and foremost, lets make sure they have the mysql extension
// loaded.
if(!extension_loaded('mysql'))
{
printMessage('Unable to use MySQL',
"We're sorry but you must have the MySQL extensions loaded " .
'in your PHP configuration in order to save your form '.
'results to a MySQL database. Please contact your ' .
'server administrator.');
}
// Secondly, lets make sure we can connect to their database.
elseif(!($link =
mysql_connect(CC_FB_DB_ADDRESS . ':' . CC_FB_DB_PORT,
CC_FB_DB_USERNAME, CC_FB_DB_PASSWORD)))
{
printMessage('Unable to Connect to Database Server.',
"We're sorry but we were unable to connect to your database " .
'server. Please be sure you have entered your database ' .
'settings correctly.');
}
// If we can't select their DB, lets try to create our own.
elseif(!mysql_select_db(CC_FB_DB_NAME, $link))
{
if(!mysql_query('CREATE DATABASE ' . CC_FB_DB_NAME, $link))
{
printMessage('Unable to Create Database.',
"We're sorry but we were unable to create your database. " .
'If you believe the database already exists, please ' .
'be sure that you have the proper permissions to ' .
'select it. Otherwise, please be sure that you ' .
'have permissions to create databases. If you ' .
'are still experiencing troubles, please contact ' .
'your server administrator.');
}
elseif(!mysql_select_db(CC_FB_DB_NAME, $link))
{
printMessage('Unable to select Database.',
"We're sorry but we were unable to select your database. " .
'Please be sure that you have the proper permissions to ' .
'select it. If you are still experiencing trouble, ' .
'please contact your server administrator.');
}
}

// If a form_results table exists, make sure it is in the
// proper format.
if(mysql_num_rows(mysql_query("SHOW TABLES LIKE 'form_results'",
$link)) != 0)
{
if(!($results = mysql_query('SHOW COLUMNS FROM `form_results`',
$link)))
{
printMessage('Unable to Query Database.',
"We're sorry but we were unable to query your database " .
'table. Please be sure that you have the proper ' .
'permissions to select from the form_results ' .
'table. If you are still experiencing trouble, ' .
'please contact your server administrator.');
}

while($row = mysql_fetch_assoc($results))
{
if($row['Field'] != 'id' && $row['Field'] != 'created_at')
{
$columns[$row['Field']] = $row;
}
}

if(!formFieldsEqualsTableFields($preferences['form_fields'],
$columns))
{
archiveOldTable($link);
createTableFromFormFields($preferences['form_fields'], $link);
}
}
// Otherwise create the form_results table in the proper format.
else
{
createTableFromFormFields($preferences['form_fields'], $link);
}

// If all went well, lets attempt to write the form results to
// the database.
foreach($preferences['form_fields'] as $field_name => $field)
{
$query .= "`$field_name` = " .
mysqlEscape($_POST[$field_name], $link) . ',';
}

// Add the uploaded file to the query if necessary
if(CC_FB_ATTACHMENT_SAVETODB)
{
if($_POST['Uploaded_File'] != '')
{
if(!($contents =
file_get_contents(CC_FB_UPLOADS_DIRECTORY .
"/{$_POST['Uploaded_File']}")))
{
printMessage('Unable To Open Attachment File',"We're sorry " .
'but we were unable to open your uploaded file to ' .
'attach it for email. Please be sure that you have the ' .
'proper permissions.');
}

$query .= '`uploaded_file_name` = ' .
mysqlEscape($_POST['Uploaded_File'], $link) . ',' .
'`uploaded_file` = ' . mysqlEscape($contents, $link) .
',';
}
else
{
$query .= "`uploaded_file_name` = '',`uploaded_file` = '',";
}
}

if(!mysql_query('INSERT INTO `form_results` SET ' .
$query . "`created_at` = NOW()", $link))
{
printMessage('Unable to Insert Into Database Table.',
"We're sorry but we were unable to insert the form results " .
'into your database table. Please be sure that you have ' .
'the proper permissions to insert data into the ' .
'form_results table. If you are still experiencing ' .
'trouble, please contact your server administrator.');
}
}
}


/**
* Archives an old `form_results` table.
*
* Renames a form results table to form_results_old or
* form_results_old with a numerical value on the end of it
* if appropriate.
*
* @param resource $link a database resource
*/
function archiveOldTable($link)
{
while(mysql_num_rows(mysql_query("SHOW TABLES LIKE 'form_results_old$i'",
$link)) != 0)
{
$i++;
}

if(!(mysql_query("RENAME TABLE `form_results` TO `form_results_old$i`",
$link)))
{
printMessage('Unable to Rename Database Table.',
"We're sorry but we were unable to rename your database " .
'table. Please be sure that you have the proper ' .
'permissions to rename the form_results table. If you ' .
'are still experiencing trouble, please contact your ' .
'server administrator.');
}
}


/**
* Escapes a value for MySQL.
*
* Prepares a value to be used safely in a MySQL query. If the value is
* numeric, it is returned. If the value is a string, it is quoted and
* escaped using the mysql_real_escape_string function.
*
* @param mixed $value the value to be escaped
* @param resource $link a database resource
* @return mixed $value the escaped value
*/
function mysqlEscape($value, $link)
{
return ("'" . mysql_real_escape_string($value, $link) . "'");
}


/**
* Checks if the columns from a table match the the structure
* of the fields from a form.
*
* @param array $form_fields the structure from the form
* @param array $table_fields the structure from the table
* @return boolean $value, true if the structures are the same,
* false if the structures are not.
*/
function formFieldsEqualsTableFields($form_fields, $table_fields)
{
// Make sure we have the proper fields for saving uploaded
// files to the database if the user has requested we do so
if(CC_FB_ATTACHMENT_SAVETODB)
{
if(array_key_exists('uploaded_file', $table_fields) &&
array_key_exists('uploaded_file_name', $table_fields))
{
unset($table_fields['uploaded_file_name']);
unset($table_fields['uploaded_file']);
}
else
{
return false;
}
}

if(count($form_fields) != count($table_fields))
{
return false;
}

foreach($form_fields as $field_name => $field)
{
if(!is_array($table_fields[$field_name]) ||
!(($field['type'] == 'textarea' &&
$table_fields[$field_name]['Type'] == 'text') ||
$table_fields[$field_name]['Type'] == 'varchar(255)'))
{
return false;
}
}

return true;
}


/**
* Create a MySQL table from the form structure.
*
* Uses the structure of the form, pulled from the XML preferences
* file to create a database table to store the form results.
*
* @param resource $form_fields the structure of the form
* @param resource $link a database resource
*/
function createTableFromFormFields($form_fields, $link)
{
mysql_query("DROP TABLE IF EXISTS `form_results`", $link);

$query = 'CREATE TABLE `form_results` (
`id` int(11) NOT NULL auto_increment,
`created_at` DATETIME NOT NULL';

if(CC_FB_ATTACHMENT_SAVETODB)
{
$query .= ",`uploaded_file_name` varchar(255) NOT NULL DEFAULT ''
,`uploaded_file` MEDIUMBLOB NOT NULL";
}

foreach($form_fields as $field_name => $field)
{
$query .= ",\n `$field_name` " .
($field['type'] == 'textarea' ? 'text' : 'varchar(255)') .
" NOT NULL DEFAULT ''";
}

if(!(mysql_query("$query, PRIMARY KEY(`id`))", $link)))
{
printMessage('Unable to Create Table.', "We're sorry but we were " .
'unable to create a database table for your form results. ' .
'Please be sure that you have the proper permissions to ' .
'create tables. If you are still experiencing trouble, ' .
'please contact your server administrator.');
}
}


/**
* Write form response to a log file.
*
* Writes the form response to the log file specified at 'CC_FB_SAVE_FILE'
* if appropriate. If the file writing fails, an error message will be
* printed out to the screen.
*
* @param string $txt_file the response to write to the log file.
*/
function writeResponseToFile($txt_file)
{
$txt_file = "{$_SERVER['SERVER_NAME']}{$_SERVER['PHP_SELF']}|" .
date("Y-m-d H:i:s") . "|{$_SERVER['REMOTE_ADDR']}|$txt_file";

// If a log file location has been set
if(CC_FB_SAVE_FILE != '[FILENAME]')
{
if($handle = fopen(CC_FB_SAVE_FILE, 'a'))
{
if(fwrite($handle, $txt_file) === false)
{
printMessage('Unable To Write To File',
"We're sorry but we were unable to write to ".CC_FB_SAVE_FILE.
'. Please contact your server administrator to be sure ' .
'that you have the proper permissions.');
}
fclose($handle);
}
else
{
printMessage('Unable To Open File',
"We're sorry but we were unable to open " . CC_FB_SAVE_FILE .
'. Please contact your server administrator to be sure ' .
'that you have the proper permissions.');
}
}
}


/**
* Prints the HTML-formatted, form response page for the end-user.
*
* Writes the form response to an HTML-formatted page for the end-user
* or redirects the user to a thank you page if specified.
*
* @param string $form_response the response to write to the page.
* @param array $preferences the CoffeeCup Flash Form Builder Preferences.
*/
function printResponsePage($form_response, $preferences)
{
// Redirect to a thank you page if the user has created one.
if(CC_FB_RESULTS_REDIRECT != '[RESULTSREDIRECT]')
{
die(header('Location: ' . CC_FB_RESULTS_REDIRECT));
}
// Otherwise create a thank you page.
else
{
$results_msg = '[RESULTSMSG]';
die(str_replace('$form_results', $form_response,
$results_msg));
}
}


/**
* Returns the CoffeeCup Flash Form Builder Preferences.
*
* Opens the CoffeeeCup Flash Form Builder XML preferences file
* and retrieves the preferences and form fields from it. If
* the preferences file is not found or can not be opened, an
* error message is printed to the screen.
*
* @return array $preferences an array of preferences specified
* in the CoffeeCup Flash Form Builder XML preferences file.
*/
function getPreferences()
{
if(!($contents = file_get_contents($_POST['xmlfile'])))
{
printMessage('Unable To Open XML File',"We're sorry but we were " .
'unable to locate your XML file. Please be sure that the \'' .
"{$_POST['xmlfile']}' is on your server in the same directory " .
'as your other form builder files.');
}

// Strips out all the XML nodes from the preferences file.
preg_match_all('/<([a-z]+?)\s+(.*?)>/is', $contents, $nodes);

foreach($nodes[1] as $node_key => $node_value)
{
// Skip over item, hidden, button and label nodes, as we're not
// interested in them.
if($node_value != 'item' && $node_value != 'hidden' &&
$node_value != 'submitbutton' && $node_value != 'browsebutton' &&
$node_value != 'label' && $node_value != 'resetbutton')
{
$node_array = array();

// For each node, we will strip out all of the attributes
preg_match_all('/([a-z0-9]+?)="(.*?)"/is',
$nodes[2][$node_key], $attributes);
foreach($attributes[2] as $attribute_key => $attribute_value)
{
$node_array[$attributes[1][$attribute_key]] =
html_entity_decode($attribute_value);
}

// If the node has an attribute called 'name', it is a form field.
if(isset($node_array['name']))
{
$name = $node_array['name'] . ($node_array['label'] != '' ?
" - {$node_array['label']}" : '');
$preferences['form_fields'][$name] = $node_array;
$preferences['form_fields'][$name]['type'] = $node_value;
}
// If the node type is 'form', it is the form preferences
elseif($node_value == 'form')
{
$preferences['form_preferences'] = $node_array;
}
// otherwise just dump everything into a general array depending
// on its node type.
else
{
$preferences[$node_value][] = $node_array;
}
}
}

return $preferences;
}


/**
* Uploads a user-submitted file.
*
* Attempts to upload a user-submitted file specified in
* '$_FILES['Filedata']' to the 'CC_FB_UPLOADS_DIRECTORY' directory. If the
* file already exists, append a numeric value to the end of
* the file name.
*/
function processFileUpload()
{
if(!ini_get('file_uploads'))
{
printMessage('File Uploads Disabled',
"We're sorry but we were unable to upload your file because " .
'your do not have file uploads enabled. Please contact' .
'your server administrator.');
}

// Make sure we have a directory to store the file uploads
if(!is_dir(CC_FB_UPLOADS_DIRECTORY) &&
!mkdir(CC_FB_UPLOADS_DIRECTORY,0755))
{
printMessage('Directory Creation Failed',
"We're sorry but we were unable to create a directory for " .
'your file uploads. Please contact your server administrator.');
}
// Make sure the file upload is of an acceptable file type
if(CC_FB_ACCEPTABLE_FILE_TYPES != "" &&
!preg_match('/\.('.CC_FB_ACCEPTABLE_FILE_TYPES.')$/is',
$_FILES['Filedata']['name']))
{
printMessage('Invalid File Type',
"We're sorry but we were unable to upload your file because " .
'the file type is not acceptable.');
}

// Seperate the file's basename and extension so that
// we can append numeric values on the end of the basename
// if the file already exists.
$extension = substr($_FILES['Filedata']['name'],
strrpos($_FILES['Filedata']['name'], '.'));
$basename = basename($_FILES['Filedata']['name'], $extension);

// Append number values on the end of the file name
// if the file already exists
while(file_exists(CC_FB_UPLOADS_DIRECTORY . "/$basename" .
CC_FB_UPLOADS_EXTENSION . "$i$extension"))
{
$i++;
}

if(!move_uploaded_file($_FILES['Filedata']['tmp_name'],
CC_FB_UPLOADS_DIRECTORY . "/$basename". CC_FB_UPLOADS_EXTENSION .
"$i$extension"))
{
printMessage('File Upload Failed',
"We're sorry but we were unable to upload your file. Please " .
'contact your server administrator.');
}
chmod(CC_FB_UPLOADS_DIRECTORY . "/$basename$i$extension", 0777);
}


/**
* Prints a message to the screen.
*
* Prints an HTML-formatted message to the screen that also contains
* the current PHP version number the server is running, the current
* version number and release date of this script as well as the
* current version number and release date of the version of CoffeeCup
* Flash Form Builder that generated this script.
*
* NOTE: This function stops execution of the script.
*
* @param string $title the title of the page
* @param string $message the message to print to the screen
*/
function printMessage($title = null, $message = null)
{
// If the user has provided a title, format it for HTML
if($title !== null)
{
$title = htmlentities($title, ENT_QUOTES);
$page_title = "$title - ";
$title = "<h1>$title</h1>";
}

// If the user has provided a message, formit it for HTML
if($message !== null)
{
$message = '<p>' . htmlentities($message, ENT_QUOTES) . '</p>';
}

die( <<<EOHTML
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title>{$page_title}CoffeeCup Form Builder</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex,nofollow" />
<style type="text/css">
<!--
div#script_info
{
border-top: 1px solid #666;
font-size: .85em;
}
-->
</style>
</head>

<body>
$title
$message
<div id="script_info">
<p>
PHP Version:
EOHTML
. PHP_VERSION . '
</p>
<p>
Sendmail Path: ' . ini_get('sendmail_path') . '<br />
Sendmail From: ' . ini_get('sendmail_from') . '<br />
SMTP: ' . ini_get('SMTP') . '<br />
SMTP Port: ' . ini_get('smtp_port') . '
</p>
<p>
MySQL: ' . (extension_loaded('mysql') ? 'Installed' : 'Not Installed') . '
</p>
<p>
File Uploads: ' . (ini_get('file_uploads') ? 'On' : 'Off') . '<br />
File Uploads Max Size: ' . ini_get('upload_max_filesize') . '<br />
Post Max Size: ' . ini_get('post_max_size') . '</p>
<p>
Software Version: ' . CC_FB_VERSION . '<br />
Software Last Updated: ' . CC_FB_LAST_UPDATED . '
</p>
<p>
Script Version: ' . CC_FB_SCRIPT_VERSION . '<br />
Script Last Updated: ' . CC_FB_SCRIPT_LAST_UPDATED . '
</p>' .
<<<EOHTML

</div>
</body>

</html>
EOHTML
);
}

If you need the HTML too, let me know.
Thanks for your help so far.

 

 

 


Reply

truefusion
The default e-mail address is with webbie (ending with vlaanderen-flanders.org.uk) and would, therefore, get placed in the "From:" header if no alternative e-mail is provided. According to the script, the default CC address is with info (ending with vlaanderen-flanders.org.uk). I haven't fully examined the CC one, but checking all of the "From:"s, i see that all deal with $_POST, with the exception of the no alternative e-mail as previously mentioned. So, either these aren't the e-mails you want or an alternative e-mail address is being provided when the form is submitted.

Reply

mrdee
Thanks for your input so far,

I remember there was a small issue with the Coffeecup program, where I had to set a Cc: because it
did not send back to the From: provided.
It is the Cc: one (the 'info') one that I want the confirmation sent to and the one which is displayed in the confirmation email.

However, as stated in my first post here, I did NOT have that problem until after the server migration.

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:

Recent Queries:-
  1. email - 103.38 hr back.
  2. cc_fb_to_email - 224.49 hr back.
  3. sorry, you have exceeded the maximum number of bcc recipients - 314.62 hr back.
  4. sorry, you have exceeded the maximum number of bcc recipients. please delete some email addresses and try again. - 541.41 hr back.
  5. form fill not sent to email from php - 631.88 hr back.
Similar Topics

Keywords : form, returning, correct, email, address

  1. My Hosting Request Email...
    (2)
  2. How To Disable Firefox's Awesome Bar
    restore old location/address bar from firefox 2 (4)
    How To Disable Firefox's Awesome Bar Many people are struggling to find the benefits of
    the so-called Awesome Bar as one member so truthfully pointed out , the smart tag makes your
    viewing "illicit" sites more obvious, particularly when people are peering over as you're typing
    keywords in /tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" />
    Anyway, for those of us who are too lazy to clear their history at the appropriate times, there are
    two steps to disabling its function entirely: Type about:config into the locat....
  3. Application Form [approved]
    (2)
    PRESENT CREDITS : HOSTING CREDITS : 37.65 Forum Username : Dhruv Display Username: Dhruv Email
    Address:dhruvin_patel@hotmail.co.uk My request is for: HOSTING PACKAGE 1 Your Registered Domain
    Name or Desired Trap17 Subdomain Name: tutorial-linker.trap17.com Introduce Yourself: Your hobbies,
    interests, talents, etc. Let the forum know you better. • My name is Dhruvin. Hobbies: Girls, gaming
    and computers. I have no talents I'm just a all rounder can do everything if i like biggrin.gif
    .Live in United Kingdom. And am a student. Desired Hosting Account Username: 8....
  4. Gahhh This Isn't Going Well Please Help!
    It's a forgot password form in php! (12)
    CODE <? // database connection details stored here include "database.php"; ?>
    <!doctype html public "-//w3c//dtd html 3.2//en"> <html> <head>
    <title>Thanks!</title> </head> <body bgcolor="#ffffff"
    text="#000000"> <? $email=mysql_real_escape_string($email);
    $status = "OK"; $msg=""; //error_reporting(E_ERROR | E_PARSE |
    E_CORE_ERROR); if (!stristr($email,"@") OR !stristr(�....
  5. Help With Form Actions.
    (1)
    CODE <h1>Login</h1> <form action="" method="post">
    <table align="left" border="0" cellspacing="0"
    cellpadding="3">
    <tr><td>Username:</td><td><input type="text"
    name="user" maxlength="30"></td></tr>
    <tr><td>Password:</td><td><input type="password"
    name="pass" maxlength="30"></td></tr> <tr><td
    colspan="2" ....
  6. Registration Form?!
    Password Issue??? (6)
    How can I build the registration form with some additional function which is illustrated by attached
    file. When a user tries to type a password, that bar thing says neither it's strong nor weak, or
    medium. Just take a look at attachment....
  7. Html Form!
    Using MySQL?! (4)
    Hey, I need your help again! I need some good working tutorial how I can update my SQL through
    HTML form. I did use some tutorials online found with the help of google; but they do not work
    properly; I mean there are still small mistakes. I need to have a good tutorial to follow. It
    should be based on security and more things. It has to be done in proper way.......
  8. Halliluya! I'm Either Rich....
    ...or it's an email scam! Guess which... (0)
    Just received this in my email. Wow! I'm----the----luckiest----guy---on---earth. ~Sob sob~
    QUOTE FROM THE DESK OF MR ABUDU HASSAN BILLS AND EXCHANGE MANAGER, BANK OF AFRICA (B.O.A)
    OUAGADOUGOU-BURKINA FASO. WEST AFRICA DEAR FRIEND I am the manager of bill and exchange at the
    foreign remittance department BANK OF AFrica (B.O.A) here in Ouagadougou, Burkina Faso. In my
    department we discovered an abandoned sum of US$10.5m (TEN MILLION FIVE HUNDRED THOUSANDS US
    DOLLAR) in an account that belongs to one of our foreign customer (MR. ANDREAS SCHRANNER from M....
  9. How To Make Form Nested In Internet Explorer ?
    Nested form in IE (2)
    I want to make a form nested in another form, it's run on Opera and FireFox but it's occur
    error in IE How can I make form f2 submit by using javscript ??? (I want to solve this
    problem because my website using Ajax upload....
  10. Problem With My Email : [urgent]
    Can't send or receive email. (1)
    Hi, I'm having a serious problem. I had a mail account set up through my Cpanel. My site is
    zoebelkin.co.cc and my mail server is mail.zoebelkin.co.cc!!! The mail account which
    I'm talking about is admin@zoebelkin.co.cc But for a week I was not getting mail. Now
    that's wierd cause I get something around 10 mails daily. I then sent a mail from one of my
    other mail id at other mail host whose address is dave2@bluebottle.com just for testing my server.
    But the message didn't ever reach my mail server. I sent many other mails from some other mai....
  11. Spam Is 30 Years Old May 3, 2008
    Come celebrate the birthday of the very first SPAM email (10)
    According to this article 393 ARPANET employees in 1978 received the very first SPAM email from
    DEC. Since then we've all grown to know and love SPAM in all of its flavors. I say we should
    make this a International Holiday and drink a beer in rememberance of that very first little
    SPAMalita that started it all back when The Rockford Files was entertaining us nightly and Jimmy
    Carter was messing up the Middle East. I think that was Carter's term... Anyway, here's the
    article in its entirety in case the above link doesn't always work: QUOTE Dublin, ....
  12. How To Find New Ip Address
    (12)
    Since the server change, my site, pandoratreasures.com doesn't load. My old IP address was
    64.69.36.223 The email about the change said: Where Do I Find The New Ip Addresses ?
    =============================== The list of main shared ip are given here :- Servername : Old IP :
    New IP there was no link. Can someone point me to the right location? Thanks. ....
  13. Paypal Email
    where can i find my paypal email? HELP anyone (3)
    Hi guys Im quite confused with the way paypal works. i know that i can pay other people thats easy
    to me.. but how do people pay me? for example, there is a site that pays people to search stuff
    using their search engine.. but the payment details you have to provide for paypal is your paypal
    email address. do they mean like the email address you used to sign up to paypal? or do you get a
    paypal email address when you sign up? any one know? let me know thanks really need the help....
  14. Can You Suggest A Good Free Email Server To Download?
    (2)
    Howdy, almost in response to my post about IMAP and PHP:
    http://www.trap17.com/forums/php-imap-read...elp-t56913.html (i still need help with this so please
    if you have experience in PHP and accessing emails using PHP help!) Im thinking i need a new
    mail server to rule out the possibility it could be my current mail server. Now currently im using
    the mail server that comes with the XAMPP package, the mail server is mercury32 version 4.something
    i know it supports the IMAP protocol because the docs say so and it has configs for IMAP. Ive messed
    around with it and ....
  15. Unable To Renew Ip Address Or Connect To Internet After Broadband Software Uninstall
    issues after removing DSL software (6)
    How many of you experienced this? QUOTE Unable to renew IP address Unable to start RPC service
    You invite a broadband service, i.e. Verizon DSL, and they provide you with an installation disk.
    You gladly use it but later you add LAN to your home and decide to add a router. You follow the
    manufacturer's instruction and set up your home network. But this is strange... the computer you
    were able to connect to the internet just before a home network is now cannot connect to the
    internet. And according to the router manual you installed the program correctly but ....
  16. Free Email Service
    I am looking to start a free Email service (6)
    So i find my self sitting at my server, looking at whats been going on lately. Then i notice that at
    one point in time i was offering Email and i thought to myself "You know what? I could really
    attract some people if i started that again!", but there was one problem in my way! I dont
    want to host this service on my server, i want it to be hosted remotely. I also want it to be free.
    So here is what im looking for: A website that offers user@mydomainname.com email service At least
    1GB per mail box guaranteed 24/7 access $0.00 price If anyone knows of such a s....
  17. Send Fake Sms From Your Nokia Phone
    sending SMS with your own From address (13)
    Sending Fake SMS There is a loop hole in Nokia mobile phone using which you can send fake
    SMS messages. i.e you can send a SMS to your friend by changing the from address to some random
    e-mail address. Nokia has a feature called SMS e-mail This feature is used to send e-mail by
    SMS. You network operator will have a SMS e-mail server. You are supposed to send a SMS to the SMS
    mail server with the To address, subject and e-mail body as a partof the SMS text body by following
    the conventions provideded by your Network operator. You SMS server will read the To....
  18. Email For My Members
    (6)
    Dose any one know where i can get a free email serves to offer to my website members. I would like
    it to be remotley hosted. I would also like it to be username@mydomain.com. I would like a free
    service. I can deal with a pay one as long as it is not on $20 a month. Silent Shadow
    www.zoneender.blogspot.com ....
  19. How To Get New Ip Address
    Request a new IP address from your ISP server. (12)
    Request a new IP address from your ISP server Here's how to do it in windows Sorry for all
    you MAC user's /sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" />
    Step 1, Click Start step 2, Click run step 3, In the run box type cmd.exe and click OK step 4,
    When the command prompt opens type the following.PRESS ENTER after each new line. ipconfig
    /flushdns *Press enter * ipconfig /release *Press enter * ipconfig /renew *Press enter * exit *press
    enter * If you pplz are still have mess ups with this ill make a video TUT .. or if you....
  20. Get 30 Gb Email For Free
    let us talk about , email system for huge data ! (27)
    Friends here we are talking about largest email, free System http://www.30gigs.com this one is
    good and can handel many file at a time. plz let me know any one having this type of information
    ! Also for small user www.walla.com is good one....
  21. What Messenger/email Service Do You Use?
    (90)
    I went with gmail when the hype began. Nice inbox size, and it's brilliant if all you want is a
    good email service. However, I switched back to hotmail simply because of it's MSN
    compatibility. MSN is still the best instant messenger, IMO. Highly doubt I'll be using whatever
    gmail is gonna come up with. MSN has climbed so high above the other clients that I believe it
    won't go down without a fight Anyhoo, what does everyone else use? Hotmail? Yahoo? Gmail? ISP
    email? Or what IM client? MSN? AIM? Waiting for gmail messenger? Post away. ....
  22. Earn Money By Reading Emails
    10 cent per email (52)
    Hi, this site is called http://www.1-800-mail.com/ You earn money by reading emails, they sent
    you 15-20 emails per day, you click in the link and you have to visit the page for 60 seconds, then
    you ot 10 cents They gave you 20 U$$ singup credit! The only bad thin is for
    minimium you have to retired 125 U$$ Now i earn You have directly earned: $
    30.1400 You have earned from your Downline: $ 0.0000 Your account balance after all
    transactions: $ 30.1400 10 U$$ (20 no because is singup credit) I dont think is a ....
  23. How To Make A Search Form And Php Code?
    Can you help please? (10)
    I am looking to put a whole Bible on my site, don't worry about copyrights, I already have all
    that. It will be put into my site book by book. My problem? I need a form that will only search
    the /Bible part of my database. I need an html form, and then a php code that can be put into just
    ONE file but that will display a search page afterward. If you could help me out here, I would
    greatly appreciate it since I will need this in order for it to work. The goal is simple, have an
    html form, that will lead to a search of my entire inneed.mxweb.co.uk/bible database....
  24. Send Anonymous Email
    Great (18)
    Ever wanted to send someone an anonymous email withouth the slightest chance to tracing it to you?
    Try this then: http://formmail.cgiworld.net/email.cgi?rec...youwanttosendto Enter the email
    address in the link and the message you want to send and cgiworld.net will send it to you. Example
    http://formmail.cgiworld.net/email.cgi?rec...r=xxx@yahoo.com Great for pranks or for any other
    anonymous needs! ( I admit, spam is probably a definite issuses in services like this
    including the Send Your Email To Anything@mailinator.com topic below me. ) /bli....
  25. Problems With Outlook Express
    My email configuration isn't working (6)
    Does anyone have a clue as to why my outgoing email isn't working with Outlook express? I can
    get incoming mail, but I'm getting an error when I try to send email. I followed the
    configuration instructions, but it still isn't working correctly. I get an error everytime.....
  26. Loop Through Form
    How do you do it? (8)
    In ASP you'd do this: CODE For Each Field in Request.Form So how do you do it in PHP? I
    want to loop through a form, check to see if it has a value and if so, append to a string to send as
    the body of my email.....
  27. Form To Php Mail. Attachment
    (13)
    i know there are a few topics talk about attachment problem, but i want to know if anyone could show
    me a basic code for attaching files like pictures with the message. I made a html form, and
    redirect the information to my mail.php file to process the information and send it to my email. I
    want to know what do i have to do to attach files like pictures. I tried to search on google, and
    the codes are so complicated (i'm an amateur at this). Would it be possilbe if you could show me
    the code and explain to me what it does and how i could customize it to fit my needs?....
  28. Paypal Scam Warning!
    New email attempt to hack your account (21)
    I've been getting those stupid scam emails for years, where they tell you to update your
    security info. I hope EVERYBODY knows those are a scam and NEVER click through. The proper response
    is to forward them to SPOOF@PAYPAL.COM, then delete the message without going to the site. Now
    there's a new one--at least this is the first time I've gotten one. This time they tell you
    that you've added a new email address and they want you to confirm. Again, the answer is to
    forward to SPOOF@PAYPAL.COM without clicking through or going to that site, then delete the ....
  29. Longest Email Address In The World
    (53)
    yourname@abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijk.com It is so long that...
    QUOTE -Some web forms are unable to read your email address -Some email software cannot be
    configured -People have a hard time typing in your email address -Companies think your email
    address is fake -The longest alphabetical email address on earth
    www.abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijk.com....
  30. Free Windowsxp Sp2 Cd From Microsoft
    just fill the request form and recive it (11)
    microsoft offer 100% free windows xp sp2. just go to this link
    http://www.microsoft.com/windowsxp/downloa...us/default.mspx and fill your address they will send
    you the cd to you. I just recive the cd yesterday. /biggrin.gif' border='0'
    style='vertical-align:middle' alt='biggrin.gif' /> I see new feature like directx 9c , WMP9 ,
    firewall , and the one I like is popup blocker! /wink.gif' border='0'
    style='vertical-align:middle' alt='wink.gif' /> PS. waiting for the cd about 1-2 week if you
    write an exact address.....

    1. Looking for form, returning, correct, email, address

Searching Video's for form, returning, correct, email, address
Similar
My Hosting
Request
Email...
How To
Disable
Firefox'
s Awesome
Bar -
restore old
location/add
ress bar
from firefox
2
Application
Form
[approved]
Gahhh This
Isn't
Going Well
Please
Help! -
It's a
forgot
password
form in
php!
Help With
Form
Actions.
Registration
Form?! -
Password
Issue???
Html
Form! -
Using
MySQL?!
Halliluya
3; I'm
Either
Rich.... -
...or
it's an
email
scam!
Guess
which...
How To Make
Form Nested
In Internet
Explorer ? -
Nested form
in IE
Problem With
My Email :
[urgent] -
Can't
send or
receive
email.
Spam Is 30
Years Old
May 3, 2008
- Come
celebrate
the birthday
of the very
first SPAM
email
How To Find
New Ip
Address
Paypal Email
- where can
i find my
paypal
email? HELP
anyone
Can You
Suggest A
Good Free
Email Server
To Download?
Unable To
Renew Ip
Address Or
Connect To
Internet
After
Broadband
Software
Uninstall -
issues after
removing DSL
software
Free Email
Service - I
am looking
to start a
free Email
service
Send Fake
Sms From
Your Nokia
Phone -
sending SMS
with your
own From
address
Email For My
Members
How To Get
New Ip
Address -
Request a
new IP
address from
your ISP
server.
Get 30 Gb
Email For
Free - let
us talk
about ,
email system
for huge
data !
What
Messenger/em
ail Service
Do You Use?
Earn Money
By Reading
Emails - 10
cent per
email
How To Make
A Search
Form And Php
Code? - Can
you help
please?
Send
Anonymous
Email -
Great
Problems
With Outlook
Express - My
email
configuratio
n isn't
working
Loop Through
Form - How
do you do
it?
Form To Php
Mail.
Attachment
Paypal Scam
Warning!
- New email
attempt to
hack your
account
Longest
Email
Address In
The World
Free
Windowsxp
Sp2 Cd From
Microsoft -
just fill
the request
form and
recive it
advertisement



Form Not Returning Correct Email Address



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web 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