0

I want to know, what is "dsh" parameter in below form? where can I get this 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>
Funk Forty Niner
  • 73,764
  • 15
  • 63
  • 131

1 Answers1

2

The name="dsh" attribute is used in conjunction with a POST array in PHP.

Which is pulled from:

<?php 
$var = $_POST['dsh'];
echo $var;

The value from it is then (automatically) pulled from the hidden value for it,
being value="-2655181513770911851" since there is a preset value for it.

An id attribute is used either in conjunction with javascript/jQuery and/or CSS.

More on this:

Consult the following on PHP.net on working/dealing with forms:

All this assuming you are running this under a working PHP environment. You cannot run this straight from your browser as file:/// since that will not parse PHP directives.

NOTA: The "Google" stuff, is out of scope of this question.

Community
  • 1
  • 1
Funk Forty Niner
  • 73,764
  • 15
  • 63
  • 131