I have this form inside a Smarty template file : \[code\]<form method="post" action="manswer.php"> <table border="0" cellpadding="5" cellspacing="0" > <tr> <td style = "vertical-align:top;">Answer:</td> <td><textarea rows="8" cols="50" name='answer_text' ></textarea></td> <tr> <td><br/></td> <td><input id = 'answerbutton' type='submit' value='http://stackoverflow.com/questions/15739932/Cevapla!' /></td> </tr> </tr> </table></form>\[/code\]I also have {$q_id} variable inside that template file. How can I pass this variable to manswer.php with that HTML form? Thanks.