Posts by Elizandro Schmidt • 166 points
9 posts
-
0
votes1
answer101
viewsA: Error calling DB table
Check if this is so: <? php $servidor = "localhost"; $usuario = "root"; $senha = ""; $dbname = "teste123"; // coneão ao banco de dados $conn = mysqli_connect ($servidor, $usuario, $senha,…
-
0
votes1
answer15
viewsA: .htaccess select file and not folder
do so: <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] </IfModule> And throw…
-
0
votes2
answers82
viewsQ: Database returning no value
I have the following code: $sql="SELECT * FROM imoveis WHERE (suite LIKE '%".$suites."%' OR banheiro LIKE '%".$banheiro."%' OR quarto LIKE '%".$quarto."%' OR garagem LIKE '%".$garagens."%') AND…
-
1
votes0
answers84
viewsQ: How to get geolocation without using the google api that is now charging a fortune?
I need to get latitude and longitude by address the user types to search for "not ip." but I’m unable to find a way to do this via php without the google api, as it has been charging a high monthly…
phpasked Elizandro Schmidt 166 -
0
votes0
answers316
viewsQ: setmask is not a Function
I’ve had a big problem for a long time script that always worked, but today this giving "setmask is not a Function". I will send the call to be analyzed, also the script but warning that it may be a…
javascriptasked Elizandro Schmidt 166 -
6
votes0
answers92
viewsQ: Is there anything that gives you the path to CSS?
I need something to make me reference the path of CSS faster, like a feature in Google Inspect, because it’s hard to keep finding the sequences of hundreds of divs inside divs. Like something that…
-
3
votes1
answer35
viewsQ: In JS label.removeClass(); will you do what I want?
Js is a great ally, but for those who know best to use it, I’m having great difficulty in a simple system that is a validation of Cpf, I would like that when being validated js removes the label…
javascriptasked Elizandro Schmidt 166 -
-3
votes2
answers501
viewsQ: Undefined variable
<?php session_start(); //validação/////// coloquei o "0" acreditando acabar com esse problema, tambem tentei NULL///////// $startaction=""; $police=""; $tipo ="0"; $Nome= "0";//atribuição do…
-
0
votes1
answer84
viewsQ: $('#type'). val('juridica');
I am having a big problem in receiving and sending the data to the database because, when creating a system where there is the possibility of using the physical person or legal person, they send to…