ok so i have this form where a user clicks a "submit" button all i know is that theres a "form_action.asp" involved (if i only knew what that was) this is from someone's script and i have no idea what im doing when the user clicks "submit" they are take to a blank page that just sits there what do i do to take them to a page that i want? btw:if its any help, its implemented in a php page
here's the code i changed index.php to a diff url and it did the same thing, took me to a blank page http://domain.com/home/index.php?mode=messages&act=view_inv&inv_id=148 (thats the url where the form is) http://domain.com/home/index.php?mode=messages&act=inv_action&pro=conf&inv_id=148&answer= (thats the url after hitting accept, and if you type anything in the textarea, that will appear after the = in the url <form action="index.php"> <input type="hidden" name="mode" value="messages"> <input type="hidden" name="act" value="inv_action"> <input type="hidden" name="pro" value=""> <input type="hidden" name="inv_id" value="<? echo $inv_id; ?>"> <tr><td align=right class="title"><?=$GLOBALS['word'][83];?></td> <td> <? echo $date; ?> </td> <tr><td align=right class="title"><?=$GLOBALS['word'][76 ];?></td> <td> <? echo $mes->subject; ?> </td> <tr><td align=right class="title">Message</td> <td> <? echo $mes->body; ?></td> <tr><td align=right class="title">Your Answer</td> <td><textarea name='answer' rows=5 cols=45></textarea></td> <tr><td align=right colspan=2> <p align=right> <input type="submit" onClick="this.form.pro.value='del'" value="Deny"> <input type="submit" onClick="this.form.pro.value='conf'" value="Accept"></p></form>