Guest User

Untitled

a guest
Oct 22nd, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <body>
  2. <form action="prueba.exe" method="get">
  3. <input type="text" name="nombre" value="Nombre:" class="input">
  4. <input type="text" name="apellido" value="Apellido:" class="input">
  5. <input type="submit" name="submit" value="Aceptar" class="button">
  6. </form>
  7. </body>
  8.  
  9. #include <iostream>
  10. #include <cstdlib>
  11.  
  12. using namespace std;
  13.  
  14. int main(int argc, char *argv[]){
  15. cout << "content-type: text/html" << endl;
  16.  
  17. string data = getenv("QUERY_STRING");
  18. cout << data << endl;
  19.  
  20. return 0;
  21. }
Add Comment
Please, Sign In to add comment