Código PHP:
Ver original<?php
//isset es para saber si la variable esta seteada
//y faltaba el nombre del boton "go"
?>
<input type="text" value="<?=$row1;?>" readonly /><br>
<input type="text" value="<?=$row2;?>" readonly /><br>
<input type="text" value="<?=$row3;?>" readonly />
<?php
}else{
?>
<form name="formmailer" method="post" action="index.php">
<input type="text" name="text" value="<?=$text;?>" onfocus="if(this.value=="<?=$text;?>") this.value=''" onblur="if(this.value=='') this.value="<?=$text;?>"" class="input_text" autocomplete="off" />
<input type="submit" id="go" name="go" class="button_generate">Generar</button>
</form>
<?php
}