
August 15th, 2003, 04:14 PM
|
|
|
|
Join Date: Apr 2007
Location: NJ - USA
Posts: 2,152
Time spent in forums: < 1 sec
Reputation Power: 5
|
|
|
RE: need help getting data to display
the quick and dirty way to do it is to change the form tag as follows
<form action="" . $_SERVER['PHP_SELF'] . "" method="post" target="_new">
this will open the same file in a new window, but since you are only displaying the results, it should work OK. If I were you I would create second file that has the get_data function only in it and then change the form tag to look like this
<form action="my_new_filename.php" method="post" target="_new">
hope that helps!
|