Posts by life.cpp • 126 points
3 posts
-
1
votes1
answer3875
viewsA: How to Insert HTML Code within Javascript?
You can use the property in the innnerHTML element = or += and enter the html code
-
6
votes2
answers110
viewsA: Mount A-Z listing in PHP
Here’s hoping you can help him: foreach (range('A', 'Z') as $char) { echo $char . "\n"; }
-
1
votes1
answer563
viewsA: Submit in form Bootstrap does not pass data via post!
Just try to go in your php and do this: <?php $nome = $_POST['name']; print_r($nome); ?> That’s what they said in the commentary, but just test. Remember that in php when making a Submit in…