Posts by Jhoweb - Jonathan Gibim • 51 points
7 posts
-
1
votes2
answers45
viewsA: How to display text at a certain mysql time
Hello, You could do by consulting the BD data something like the example below: <?php // consulte esses dados do BD $dataAberto = "2020-10-23 08:00:00"; $dataFechado = "2020-10-23 18:00:00"; //…
-
0
votes2
answers1307
viewsA: Save form data in TXT (PHP)
Good afternoon, In case you are saving only one data, because the two fields are with the tag name="text" changes the tag of the password field Ex:name="password"; and change the php file to $texto…
-
0
votes1
answer219
viewsA: Responsive bootstrap navbar does not open
Check if your JS files are correct <script type="text/javascript" href="js/jquery-3.5.1.min.js"></script> <script type="text/javascript" href="js/bootstrap.min.js"></script>…
bootstrap-4answered Jhoweb - Jonathan Gibim 51 -
1
votes1
answer70
viewsA: Bug when doing INSERT in database with PHP and Mysql
Before doing the treatments of each image check if it exists. In the first image you check this, but not in the other two. Else if(Empty($imgFile)){ $errMSG = "Select image."; } Abs.…
-
0
votes2
answers103
viewsA: Percorer 2 Distinct Arrays and Verify Which Values are Equal
In your case the array is inside another array, try this. $result = array_intersect($array1[0], $array2[0]); print_r($result);
-
-1
votes1
answer21
viewsA: running php problem
Download a PHP development environment, for example XAMPP follows the download link: https://www.apachefriends.org/pt_br/download.html…
-
-1
votes2
answers77
viewsA: Display only a specific product with PHP
I believe that solves; $produtos = DBRead('produtos', "WHERE id = '{$id}'");
phpanswered Jhoweb - Jonathan Gibim 51