Posts by ferviviurka • 100 points
12 posts
-
0
votes0
answers21
viewsQ: How to browse a multidimensional list in flutter
I have a list that I will use to form a Drawer, passing it title, link and icon. List<List<String>> DrawerList = [ ["Perfil", "/perfil","Icons.vpn_key"], ["Turmas",…
-
1
votes1
answer74
viewsQ: How do I use Redirectmatch to redirect to the other page?
I have an application made in wordpress and I’m making a new one with HTML/CSS and PHP. Inside the folder of this application made in wordpress, has a file called htaccesss, and has the following…
-
0
votes2
answers186
viewsA: How to use appendchild
One of the existing ways to do this: you assign a variable an html code, take care of the parentheses, this may give problem. And do not forget to close the HTML keys too. Jquery, the append…
-
1
votes1
answer57
viewsA: Is there any Pattern related to the typing or not of values in the return of JSON in API’s?
Patterns concern how to work with the objects and architecture of the system and not a specific object type. It will depend on the problem you are dealing with, how you did your system architecture…
-
1
votes2
answers44
viewsA: How to center an image vertically within a div?
To align an image in the center, first you must define its height and width using the attributes WIDTH E HEIGHT After setting the height and width, it is important that you set its position, through…
-
0
votes3
answers52
viewsA: How do I self-play and stop a video when I open and close a modal
HTML5 has a TAG called <video> </video> in this tag you can add attributes of autoplay and controls when you mouse over the video, for example: <video controls autoplay> <source…
-
0
votes1
answer32
viewsA: git push - unbale to acess
This error indicates connection problem, may be caused by an antivirus other than the standard provided by Windows, or if you are using a proxy server to access the Internet, Git requires a special…
-
0
votes4
answers77
viewsA: Upload default photo if no photo is registered
Make a IF...Else checking whether the value passed $dados["foto"] is null, you assign to the $dados["foto"] a standard image: $dados["foto"] = "caminhodasuaimagem.extensão"…
phpanswered ferviviurka 100 -
0
votes2
answers81
viewsA: Grow DIV according to content
Here’s your neat HTML code, was with an extra div. <div class="box"> <div class="inside-box"> <div class="icon-box"></div> <a href="#">Fazer Download</a>…
-
1
votes1
answer44
viewsA: How to open a href link via console dev tolls?
Instead of using window.open tries to use the window.location.href For example: window.location.href = "url";
-
-1
votes3
answers401
viewsA: Check CPF and Email fields before sending to the database (PHP)
<?php session_start(); include_once '../banco/conexao.php'; $SendCadPet = filter_input(INPUT_POST, 'SendCadPet', FILTER_SANITIZE_STRING); if ($SendCadPet) { $nome = filter_input(INPUT_POST,…
-
3
votes1
answer60
viewsA: Code does not redirect to another page
Try to use the window.location.replace(url) or window.location.href = url; Link to reference: https://developer.mozilla.org/en-US/docs/Web/API/Location/replace…
javascriptanswered ferviviurka 100