new account form has the usual; firstname, last name company, street address etc.
Talents write in ALL uppercase, lowercase everything but proper case.
Don't know where to apply ucwords and strtolower to convert values into proper case.
Code as is:
<form action="https://www.website.com/?page=step3" method="POST" name=myForm id="commentForm" class="cmxform">
<?php foreach($_POST as $key => $value){ ?> <input name="<?php echo $key ?>" type="hidden" value="<?php echo $value ?>" />
<?php } ?>
<hr>
<div class="linea">
<div class="itemlabel">Nombre: <br>Name: </div>
<div class="cajita"><input type="text" class="required" name="nombre" /></div>
</div>
Thank you for any solutions/suggestions