I am new to PHP and want to ask you a simple question :
On my web site, I want to create a button : "Description" and once user click it, a new form : "Description" will generate.
I use php to build my web site. I have tried to write them in my index.php file but none of them can generate a "Description" form to me, please help me, thanks.
Method 1 :
<input type="button" value="Description" onclick="description.php" />
Method 2 :
$button = "<input type='button' id='php_button' value='Description'>";
echo $button;
Method 3 :
<form action="description.php">
<input type="button" value="Description" onclick="des_fun()">
</form>

