Posts by Sabrina marçã • 175 points
5 posts
-
0
votes1
answer48
viewsQ: How to put a layout for the search results of an input search that is inside echo?
I need to put a layout in the search results of input search, I have a page that uses the layout of bootstrap 4 Cards, and I wanted the search results to be the same. This is the script I use in my…
-
2
votes1
answer3203
viewsQ: How to put an Icone/Lookup Button inside an input with Bootstrap?
<form class="form-inline my-2 my-lg-0 pl-3-lg"> <input class="form-control" type="search" placeholder="Pesquisar" aria-label="Search"> <button class="btn btn-dark ml-1"…
-
1
votes0
answers56
viewsQ: Why doesn’t my switch generate the right results?
I’m using a condition and a switch to determine some values for some variables, but I’m not getting the expected results. When the link <a href="index.php?post=myFile"></a> is clicked, I…
-
6
votes1
answer376
viewsQ: How to specify a time when changing colors with :Hover?
<a href="#">link</a> a:hover{ color:blue; } With this script I can change the color of the text "link" when the mouse hovers over, but the color is changed instantly. I wanted the color…
-
6
votes3
answers1597
viewsQ: How to open a. php file that is in a subdirectory?
My index.php has this script inside it: <?php $pagina = empty($_GET['p']) ? 'home' : $_GET['p']; switch ($pagina): case 'contato': $titulo = 'Contato '; $keywords = ''; $descricao = ''; break;…