onfocus と onblur に php を入れることはできますか? 以下のコードでは、私が書くことができる方法はありますか:
comment<?php echo $row['titol_post'] ?>
今コメントがある場所で?
<?php $result = mysql_query("SELECT * FROM blog WHERE id= 1") or die(mysql_error());
while($row = mysql_fetch_array($result)) { ?>
<Form id="comentari" method="POST" action="rebut.php">
<textarea name="text_comment" rows="2" cols="30"
onfocus="if (this.value=='Comment') this.value = '';"
onblur="if (this.value=='') this.value = 'Comment';">Comment</textarea>
<input type="submit" class="boto" name="comentari" value="enviar"/>
</Form>
<?php } ?>