So, I have this form http://www.hidroactiv.ro/contact.html
And this in the PHP:
$nume = $_POST['Nume'];
$email = $_POST['Email'];
$telefon = $_POST['Telefon'];
$judet = $_POST['Judet'];
$persoana = $_POST['Persoana'];
$mesaj = $_POST['Mesaj'];
echo "Valori memorate:";
echo $nume,$email,$telefon,$judet,$persoana,$mesaj;
echo "<br>";
But it shows up nothing... Any ideas?
I know the source code looks awful, but this is a page I've bade 2 years ago when I was still learning the basics of HTML.