I have a short HTML form:
<html>
<form action=checkpoint.php action=post>
Indtast dit brugernavn
<input type=text name=username>
<p>
Indtast kodeord
<input type=password name=password>
<p>
<input type=submit name=submit value=KLIK!>
</form>
</html>
and an even shorter PHP page:
<?php
echo ":".$username":";
exit;
?>
Not matter what I enter into the username filed of the form - it doesnt show up on the checkpoint.php page - however the two : (before and after username) does come out as expected.
I am running php 4.2.2-8.0.5 on Red Hat linux 8.0 with apache 2
Any ideas ???