Salve,
rifaccio questo post da zero sperando di essere più chiaro.Dunque io ho inserito nel mio sito una mailing list form(sito regolarmente comprato) con le istruzioni dell'autore(in inglese),che io ho compilato nella seguente maniera:

<?php
//PHP version
//If you are using php 4 then uncomment the following line and comment the line below that...
//require_once('classes/database_php4.php');
require_once('classes/database.php');
//
//
//Location of the scripts folder on your server
$siteaddress = 'robybon59.altervista.org';
//
//
////////////////////////////////////////////////////////////////////
//DATABASE LOGIN DETAILS////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
//these can be found by loggin into your hosting platform and finding the data associated with mysql
//
//The Host address of the database
$dbhost = 'localhost';
//
//the username for the database
$dbusername = 'robybon59';
//
//the password for the database
$dbpassword = '';
//
//the name of the database
$dbdbname = 'my_robybon59';
//
//
/////////////////////////////////////////////////////////////////////
//VARIABLES FOR THE FIRST EMAIL SENT OUT WHEN A NEW USER SIGNS UP////
/////////////////////////////////////////////////////////////////////
//Change this to whatever you want the subject of the first email to be
$firstsubject = 'Thankyou For Signing Up!';
//
//
//The address from which you want the emails to be 'from'
$firstfromemail = 'robybon59@altervista.org';
//
//
//Edit the following lines to format your initial email
//"\n" indicates a line break in the email "\n\n" indicates a double line break etc
$firstmessage = 'Hey there '.$_POST['Robybon59'].','."\n\n";
$firstmessage .= 'Thanks for joining the mailing list.'."\n\n";
$firstmessage .= 'By joining this list, you will recieve emails containing information about site updates, special offers or competition details.'."\n\n";
$firstmessage .= 'You can opt-out of these emails whenever you like as each email will have an un-subscribe link at the bottom.'."\n\n";
$firstmessage .= 'Thanks Again for joining the mailing list.'."\n\n".'Speak soon :)'."\n\n";
$firstmessage .= 'Your Name'."\n\n";
//
?>
Allora quando entro nel sito e compilo il form mi dice undefined e voglio capire dove sbaglio,se nel compilare il file variable. php o forse nel creare il database MySQL. Premetto che il file variable.php e dentro una cartella del sito chiamata scripts,e che ho abilitato php5. Ok se qualcuno sa come aiutarmi vi sarò molto grato,intanto auguri per un buon 2010.