Posts by samuel nunes • 1 point
3 posts
-
0
votes1
answer34
viewsA: Load reply to another page
You could not use type="Hidden input" <?php <input type="hidden" name="id_prestcao" value=<?=$id_prestacao?> > ?>…
-
0
votes2
answers260
viewsA: Taking a TD value from an HTML table to feed a PHP variable
depending on the situation of to pass via get. <?php while ($row_funcionario = mysqli_fetch_assoc($resultado_funcionario)) { $nome = $row_funcionario ["nome_funcionario"]; ?> <tr…
-
-2
votes5
answers9322
viewsA: How can I generate a 7-character alpha-numeric key?
<?php function chaveAlfaNumerica($QuantidadeDeCaracteresDaChave){ $res = implode('', range('A', 'z')); // ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxiz $con = 1; $var = ''; while($con <…
phpanswered samuel nunes 1