post_js

read-post-using-js

-Read post data using javascript.

First method

-single landing page

equivalent to php $_ISSET

Second method

equivalent to php

$_a=new array(); // array where all post data will be stored foreach($_POST as $key => $value) { $message = ā€œ$key => $value\nā€; //echo $message;

array_push($_a,$key,$value); }