PLUGIN Output

jodasi

Verified User
Joined
Mar 15, 2005
Messages
62
Last edited:
Solved one problem, other commes :)

I have made a form:

************ index.html ***********
#!/usr/local/bin/php
<table class=list cellpadding=3 cellspacing=1>
<tr>
<td class=listtitle><b>Plugin</b></td>
</tr>
<tr>
<td class=list>
<form method=POST action=newsletter/indexpost.html>
Base de Dados <input type=text name=bd size=20 /><br/>
<input type=submit value=Enviar />
</form>
</td>
</tr>
</table>
*******************************

when i try to make

***********indexpost.html*********
#!/usr/local/bin/php
Content: <?=$_POST["bd"];?>
*******************************

It just woinbt print the variable value!

Any help will be apreciated.
 
Back
Top