Hi,
I was wondering if there is a shorter way of writing the following code:
<input type="text" name="username" value="<?if(isset($_POST['username'])){ echo $_POST['username']; }?>" />
I hate having to do this will all my forms as the isset() check really messes up my HTML and scares away the frontenders.