如何在php代码的文本区域字段中添加签名[关闭]

i wanted to add signature text at the end of message box but for users it must show a blank text box but when the user click send then signature also go with that message here is the code area where im trying to add my signature

<textarea name="text" cols="46" rows="10" onKeyDown="textCounter(this.form.text,this.form.tabn,440);" onKeyUp="textCounter(this.form.text,this.form.tabn,440);"></textarea>

Just do it on the php side, or you can use javascript to add it when the user submits the form.

<?php
$name = $_POST['name'];
$signature = "Your signature";
$name .= $signature;
...

?>