Posts by George • 41 points
3 posts
-
1
votes0
answers44
viewsQ: table print js problem
Look I have a problem in this code the table does not appear in print $(function () { $('button[type="submit"]').click(function () { var pageTitle = 'Page Title', stylesheet =…
-
2
votes0
answers27
viewsQ: Problem with php special character
I have this script that separates a string by character. <?php $key = "VÔMITOS"; for( $i=0; $i < $n_caracteres ; $i++ ){ print $key[$i]."\n"; } ?> And it returns the following error: V M I…
-
-1
votes1
answer911
viewsQ: How to disable Browser Auto-Fill?
This screen is registration of my system. And here the input. <input id="senha" name="senha" placeholder="" class="form-control input-md" required="" type="password" autocomplete="off"…