javascript - What is "dsh" parameter in create google account form? -
i want know, "dsh" parameter in below form? can param?
<form novalidate="" id="gaia_loginform" action="https://accounts.google.com/serviceloginauth" method="post"> <input type="hidden" name="service" id="service" value="blogger"> <input type="hidden" name="dsh" id="dsh" value="-2655181513770911851"> <input type="hidden" name="galx" value="obuz5i4i_48"> </form>
the name="dsh"
attribute used in conjunction post array in php.
which pulled from:
<?php $var = $_post['dsh']; echo $var;
the value (automatically) pulled hidden value it,
being value="-2655181513770911851"
since there preset value it.
an id
attribute used either in conjunction javascript/jquery and/or css.
consult following on php.net on working/dealing forms:
all assuming running under working php environment. cannot run straight browser file:///
since not parse php directives.
nota: "google" stuff, out of scope of question.
Comments
Post a Comment