PHP: Créer un bouton de soumission(submit) automatiquement

Author:


Download

<?php
 
function input_submit($nom_control, $label)
{
    print '
<input type="submit" name="' . $nom_control .'" value="';
    print htmlentities($label) .'"/>';
}
input_submit("sbmit","Envoyer");
 
  ?>

Leave a Reply

Your email address will not be published. Required fields are marked *


6 + one =