kevincro Posted December 11, 2007 Share Posted December 11, 2007 My question concerns the use of opentable() and closetable(). I'm wanting to know if these functions isolate processes within them. For instance if I want to put two forms on the same page, could I put one form action between these two functions and then put the other between another set of these functions. Basically it would look like the following: opentable("Process 1"); echo "<form name='input' action='process1.php' method='POST'> closetable(); opentable("Process 2"); echo "<form name='input' action='process2.php' method='POST'> closetable(); Would this work? Or am I way off base here? Quote Link to comment Share on other sites More sharing options...
JacobYaYa Posted December 11, 2007 Share Posted December 11, 2007 Could you post up the code for those functions? You shouldn't be nesting forms if that is what you are trying to do. Quote Link to comment Share on other sites More sharing options...
trq Posted December 11, 2007 Share Posted December 11, 2007 Those functions are user defined and not part of php. I suggest you read the docs from wherver you got them. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.