hi,
found a solution for the other post about the php problem or not.
Now the script works

<?php

$ToEmail = "[email protected]";
$EmailBody = "Enviado por: $titulo. $nome\n";
$EmailBody .= "Da empresa: $empresa\n";
$EmailBody .= "Com o cargo: $cargo\n";
$EmailBody .= "Morada: $morada\n";
$EmailBody .= "Cidade: $cidade\n";
$EmailBody .= "Código Postal: $cp-$cp2\n";
$EmailBody .= "Pa*s: $pais\n";
$EmailBody .= "Telefone: $telefone Fax: $fax\n";
$EmailBody .= "E-mail: $mail\n\n";
$EmailBody .= "Pedidos de Informação: ";
$EmailBody .= "$inform\n\n";
$EmailBody .= "Comentários:";
$EmailBody .= "$coment";
$EmailFooter = "\n\nEste mail foi enviado a partir da página de Internet da JANZ MECÂNICA DE PRECISÃO, S.A.";

//:: esta linha não existe no teu script, mas sugiro que ponhas algo como
$EmailSubject = "Mensagem enviada a partir do site: $nome";

$EmailMessage = $EmailBody . $EmailFooter;
mail ($ToEmail , $EmailSubject, $EmailMessage);

?>

Now i have another problem.
Imagine this
One movie that send some variables to a php file, or other format as long as it works.
The variables are text only.

on (release) {
loadVariablesNum ("index.php", 0, "POST");
}


The php script

<?php

$header;
$body;
$footer;

?>

Another movie that, when push a button, load those variables created in the other movie.


on (release) {
loadVariablesNum ("index.php", 0, "GET");
}

I've already edited the CHMOD of the folder and the php file in the server with the full read write (777).

So can anyone help me about what im doing wrongh?
thanx in advance.

Trolljanz