I've built a site to be accessibile, the problem is the "value" atribute in the form is a requirement of the WCAG level 3. An example can be found here Bobby
The problem is because the value attribute contains php value="<? echo $_POST['name']; ?>" /> . I can't use it for it's accessibility purpose.
This is the code from the php form which can be seen on my site.
I need the "value" atribute to contain "your email address" for example!
<form name="email" action="<? echo $_SERVER['PHP_SELF']; ?>" method="post">
<p><label for="name">name</label><br />
<input class="inputbx" tabindex="1" type="text" name="name" id="name" value="<? echo $_POST['name']; ?>" />
<br />
<label for="email">your email address</label><br />
<input class="inputbx" tabindex="2" type="text" name="email" id="email" value="<? echo $_POST['email']; ?>" />
<br />
<label for="subject">subject</label><br />
<input class="inputbx" tabindex="3" type="text" name="subject" id="subject" value="<? echo $_POST['subject']; ?>" />
<br />
<label for="message">message</label><br />
<textarea tabindex="4" cols="50" rows="10" name="message" id="message"><? echo $_POST['message']; ?></textarea><br /><br />
<input type="submit" tabindex="5" class="inputbtn" name="submit" value="SEND" />
<input type="reset" tabindex="6" class="inputbtn" value="RESET" />
</p>
</form>
This is a screen-shot of how I would like the fixed form to look

Any help would be greatly apprecicated.
Note: I'm a php novice!
Thanks