Cari amici,
il PHP non è il mio forte, con questo script (qui solo la parte più iniziale)

<?php
/***************************************
** Title........: Form Processor
** Filename.....: formproc.php
** Author.......: Richard Heyes
** Version......: 2.03
** Notes........:
** Last changed.: 28/01/2001
** Last change..:
***************************************/

/***************************************
** Security.
***************************************/
$security = 0;
$servername[] = 'www.miosito.com';
$servername[] = 'www.miosito.com';
$bad_addresses = 'badip.txt';
$check_email = 1;
$use_templates = 1;
/***************************************
** Templates.
***************************************/

$tpl_thankyou = 'gino.htm';
$tpl_email = 'firb.txt';

/***************************************
** Non-template redirections.
***************************************/

$required_error = 'error.required.html';
$bad_referer = 'error.referer.html';
$bad_address = 'error.address.html';
$invalid_email = 'error.email.html';
$thankyou_page = 'gino.htm';

/***************************************
** Some defaults.
***************************************/
$email = user;
$recipient = email;
$subject = oggetto;
$addhostip = 1;
Vorrei che nella sezione SOME DEFAULT sia trasportato nella linee $email - $recipient $subject, i campi del precedente form (come il request.form dell'asp) è possibile?
Grazie
Gino