forms - Getting GET/POST result from third PHP page -


i have following pages:

  • webservice.php - has webservice used handle possible , post variables sent it, returning string result.
  • form_page.php - page form action redirects table_result.php.
  • table_result.php - on page, there table should filled results webservice.php.

my question is: if get/post variables' values available on table_result.php (after form data has been submitted), how can send them webservice.php , result fill table without leaving table_result.php? important note on webservice.php there bunch of if (isset($_get["var_name"])) formulate database query , return result on string, said before.

thanks in advance.

first, instead of $_get, use $_request, make available via both post , get. can use search here , find answer


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

c++ - Clear the memory after returning a vector in a function -

erlang - Saving a digraph to mnesia is hindered because of its side-effects -