hi; this is my problem: I've got a page called basis.php, in this one there is : <? if ($action == "form"){ include "http://www.domain.com/member_form1.php"; } ?> at this point when I call:http://www.domain.com/basis.php?action=form I see my form, but it isn't working anymore.
what should I do in the member_form1.php page that it will be processed in the http://www.domain.com/basis.php?action=form page. now member_form1.php say's: <form method=post action=http://www.domain.com/basis.php?action=form> </form> but this is not working
so short: I want to proces a form in a page from an different page by using include
Thanks!
<form method="post" action="$PHP_SELF" > <input type="hidden" name="action" value="form"> </form>
I wish it was this simple. Using this the file loads not in the basis.php?action=form file but using the included one. and that is not what I wanted
So the results of the form must be echoed in the basis.php?action=form file
thanks anyway
I guess I am unclear on what it is that you are trying to accomplish. I understand that your form is in the include file, but where is the code to process the form (ie: do something with the submitted values)?
-- Rich