Very good people from the forum
What I would like to do, which I do not have the slightest idea in this language, is to show the data that is entered in certain inputs and dropdowns in a secondary screen, so to speak, through a submit so that the user can have a summary of the data that was filled in the inputs and dropdowns.
I have read that what could be through ajax, method = GET but I am new to this and I do not understand it completely.
Any help that is given to me I thank you in advance.
Here I leave an input and a dropdwon that I would like to show in the submit:
<div class="input-field col s12 m10 l10">
<i class="material-icons prefix">attach_money</i>
<input id="MontoPresupuestado" name="MontoPresupuestado" type="number" class="validate" required title="Del Monto Presupuestado se Define Automaticamente la Modalidad/Metodología del Proceso" onchange="LoadValues()">
<label for="DescripcionAdquisicion">Monto Presupuestado US$</label>
</div>
<div class="row">
<div class="input-field col s12 m10 l10">
<select class="browser-default" id="ModalidadProceso" name="ModalidadProceso">
<option value="" disabled selected>Seleccione la Modalidad del Proceso</option>
<option value="1">Pre-calificación</option>
<option value="2">Co-Calificación</option>
</select>
</div>
</div>