Posts by brnTwp • 448 points
23 posts
-
2
votes1
answer2066
viewsQ: Convert latitude and longitude to GMS (Degrees, minutes and seconds)
I have a project in Google Maps Javascript that involves a lot of interconnected functions. At the moment, I have 2 text inputs receiving Latitude and Longitude of my mouse click in the Google Maps…
-
0
votes2
answers66
viewsA: Array , This code above is no mistake and when I open it :
Detail, in addition to the typing error of the variable, as already mentioned the Valdir Silva, it seems that these foreach are changes... Because you define, for example, the variable $dish in the…
-
0
votes1
answer100
viewsA: Loop to show all news
First, there in your query, you don’t need the name=name, title=title.. For this is only applicable if you want to search for some specific data in the database, example: $nome = "AlmostDone";…
-
0
votes2
answers104
viewsA: Turn the side bar menu into a fixed menu
You can put it there on <div id="wrapper"> to class of him when he stays toggled, in case the line should stay so for that: <div id="wrapper" class="toggled"> 'Cause that’s the class…
-
3
votes2
answers1130
viewsA: Send PHP checkbox value
Below is how your code should look, knowing your needs what seems most convenient to me would be to put them in an array, so I joined the answer of Diego with mine, getting: <form method="POST"…
-
2
votes1
answer98
viewsA: How to display certain products when clicking a link to another page?
You can do this by placing parameters on your href to pick up the page where you want it to list certain items. For example like this: I’m going to use the piece of your code from the items…
-
1
votes2
answers47
viewsA: form text to be assigned as link
You can use the jquery to do this, I did it running but I believe it will work: You put this script in your index.php or create a file .js (don’t forget to remove the tag <script> and…
-
1
votes2
answers2434
viewsA: How can I kill a process as a windows admin user?
Look at this, to kill certain Windows processes the same requires that the user level is administrative, in case you are a Administrator To check if your account has administrative permissions you…
-
0
votes4
answers1156
views -
1
votes3
answers1911
viewsA: Leave label side by side , bootstrap
To leave the label on the input side, you need to put in your tag <form> the following class: <form class="form-horizontal"> But this explanation the hugocsl has already provided you.…
-
1
votes1
answer66
viewsA: Help with PHP and HTML
Buddy, check the tag <th>, 'cause you’re not closing it, for example, the line: echo "<th scope='col'>MATRÍCULA<th> Notice that you didn’t close the tag, just close it: echo…
-
1
votes2
answers3104
viewsA: How to enable a button after input is populated
You can use the jquery to do this: $(document).ready(function(){ $('#campo').on('input', function(){ $('#manda').prop('disabled', $(this).val().length < 3); }); }); <script…
-
0
votes1
answer895
viewsA: How do I pick up the location of a marker and store it in the database using google map?
Leticia, follows the function in which you do what you want, you just have to position it somewhere in your javascript where your initMap First, position two inputs somewhere you want, follow below…
-
1
votes2
answers121
viewsA: I need a menu whose sub-menu appears above the menu
You should look for menu and submenu, so you find various ways to create, whether with pure css or with some jquery plugin (the most famous and easy is the bootstrap) I have a code with menu and…
-
2
votes1
answer54
viewsA: I cannot list a table in php
There’s a lot wrong with your code, my friend, one of them is in your code <title>: <title>Listar Alunos</alunos> Are you closing the tag <title> with </alunos>, then…
-
1
votes2
answers846
viewsA: Validate checkbox fields with Bootstrap Validator
For you to use bootstrap Validator, first, you must have its js library specified in your html file (but in this case, it seems that you already have it). After that, you need to specify in your…
-
1
votes3
answers318
viewsA: Pick site name by link
I think this will do for you: index php. <form id="form" name="form" method="post" action="envia.php"> Links: <label for="nome"></label> <textarea name="nome" id="nome"…
-
0
votes4
answers191
viewsA: Assign more than one value to a checkbox
As yet I can not comment below the comment of gabrielfalieri, i believe that his line of code has a problem in concatenation, which still results in taking only the value of the first field.…
-
1
votes3
answers13294
viewsA: Perform a function after full page loading
There are two ways to load a function after page loading, it can be by tag <body> or by jquery Take for example: <body onLoad="nome_função();"> With this method, after full loading of…
-
3
votes3
answers14857
viewsA: How to validate Cpf with javascript mask?
Using our friend’s answer Leo Caracciolo I just added a mask to make it cute as per your request (mask + validator). function ValidaCPF(){ var…
-
1
votes2
answers31
viewsA: Problems recording and solving the calculation
First, there are some syntax errors in your code, in the first case: Para pegar os values dos campos input via POST, o código não se escreve "$_post" e sim "$_POST" (tudo maiúsculo) como por…
-
1
votes1
answer256
viewsQ: button sends Hidden input field value
I have a problem with the use of a specific button in the project. I’ll explain: I have a window opened by the window.open command, so in this open window I have a button that takes the value of two…
-
0
votes1
answer226
viewsQ: Perform one page function on another
I have a question regarding my project. I have a button in a page "x" that when clicking it checks the geolocation in Google maps (fills the inputs with the coordinates). So far so good, I need to…