2
I had asked a poorly elaborated question. I would like to pass an information by a form Ubmit, that information would be standard for example:
Password = 123
This information would not appear to the user would be transmitted in background for me to make a post.
I have some inputs, for example:
<div class="row" style="border:none!important;">
<div class="form-group col-sm-6 col-xs-6 inline-input">
<div class="input-group col-sm-12 col-xs-12">
<div class="input-group-addon"><span class="elegant icon_phone"></span></div>
<input type="text" class="form-control mask-phone" id="telefone-cadastro" name="telefone" placeholder="Telefone" required>
</div>
</div>
</div>
What I need is to pass a report as if it were an input but I would already set the value it was would have at the time of Submit.
Want to set in browser or set in server side?
– Sergio
From what I realized "would be transmitted in the background for me to make a post" should be in the right form?
– Miguel
Because if you want to set on the server the best would be to use a Session, because in the browser can be manipulated.
– Sergio
It is true, if it is necessary to have some security in this operation should save the value also on the server side and do the check when sending the data
– Miguel