Posts by Thiago Bomfim • 62 points
7 posts
-
-2
votes1
answer59
viewsQ: Is it correct to use bootstrap when finishing a project?
Hello, so hear many say they use bootstrap in the completion of a project and wrong, I particularly do not like to work with front-end then I try to skip this part seeking some responsive theme…
-
1
votes4
answers67
viewsA: Help with $_SESSION
try so it probably won’t make any mistake <?php session_start(); ?> <span>Endereço para a entrega 01: <?php echo $_SESSION['bairro'];?> - <?php echo $_SESSION['rua'];?> ,…
phpanswered Thiago Bomfim 62 -
1
votes2
answers882
viewsA: Call to a Member Function query() on null in /var/www/html/mvc/models/Anuncios.php:9
puts a global $db; and see if it catches
phpanswered Thiago Bomfim 62 -
0
votes2
answers391
viewsA: Satisfaction survey form
if you have fixed all the errors probably the problem is in your table already checked if the table id has been added an AUTO_INCREMENT
-
0
votes2
answers88
viewsA: How video sharing sites perform autoplay with audio on Chrome
as the colleague said above Html5 itself already has this option is only to use autoplay but this option does not work very well on mainly Android phones because many browsers block autoplay and…
-
0
votes1
answer133
viewsA: Search data from a database table
Good first I see that you are still using the mysql functions and you better update your whole script to mysqli or to Pdo which is what I recommend from a search later to know why, because the mysql…
-
0
votes2
answers53
viewsA: How do I save to the database when a "user" or "admin" edits or registers a new item?
by what I’m seeing Voce wants to create log type I have something similar in a script of mine and this is how it creates the function : function addlog($msg) { global $pdo; $msg =…