Posts by Gladison Neuza Perosini • 861 points
70 posts
-
1
votes2
answers36
viewsQ: My main DIV link does not work if I have a link in my internal DIV
I have a DIV inside another, but my main DIV does not work the link if I put inside it a DIV with link to close. CSS: #guaraparivirtualsuperpopup { position:relative; width:1215px; height:500px;…
-
0
votes1
answer125
viewsQ: How to hide two Divs inside each other with Javascript?
I am facing a problem when trying to hide two divs, ie one inside the other. I can only hide one div the other is visible. Follow what I’m using: Java Script: <script type="text/javascript">…
-
1
votes1
answer61
viewsQ: How to make two values switch in a variable without repeating
have a variable $rt that you need to switch with each refresh of the page, but without repeating. If the variable’s value is 0, on the next page update the value must be mandatory 1 and when…
phpasked Gladison Neuza Perosini 861 -
5
votes2
answers153
viewsQ: How do I get a page on my site to appear on the same day in google search results?
I need to know a way for a page of my site to appear in google search results on the same day. Any suggestions on what needs to be done? Because I realize that there are sites that once a news is…
-
2
votes2
answers134
viewsQ: How do I delete the space that require_once leaves?
When I use the require_once to include the top of the site, it leaves a top space at the top of approximately 8px, even in CSS I using body{ padding: 0; margin: 0; border: 0; }; the problem remains.…
-
0
votes2
answers385
viewsQ: My DIV is not pasted to the top bar of the browser
My DIV does not get glued to the top bar of the browser. I realize that there is a space of about 10px. I’ve used the following CSS, but it’s no use: body{ margin: 0; padding: 0; } Follow more…
cssasked Gladison Neuza Perosini 861 -
0
votes1
answer37
viewsQ: How do I display a DIV when passing the Mousa over another DIV while holding the same opening position?
I will explain based on the image below I did to make it easier to understand. In the image below I have a banner (gray color) and other larger in red color. The operation would be as follows: When…
cssasked Gladison Neuza Perosini 861 -
0
votes1
answer1174
viewsQ: How to make a DIV adjust its height according to the background image?
How to make a DIV adjust its height according to the background image? .guaraparivirtual-guiacomercial-banner { position:relative; width:900px; height:auto; float:left; background-color:#dddddd;…
cssasked Gladison Neuza Perosini 861 -
-1
votes1
answer607
viewsQ: How to save the full HTML of a form to Mysql?
I’m trying to record the full HTML of a form. Since I have a system in which each user can have his or her individual form of payment, which requires that each one record the code of the buy button…
-
0
votes2
answers60
viewsQ: How to capture all images from an image field in XML to write to MYSQL?
Good Afternoon! I need to capture in PHP all the images contained in the XML image field below to write to MYSQL, as I do? <Media> <Item…
-
0
votes1
answer39
viewsQ: How to search a word at an interval in the sentence
I need to search a word in an interval in the sentence. Example the sentence below: HTML was created in 1991 by Tim Berners-Lee at CERN (European Council for Nuclear Research) in Switzerland.…
phpasked Gladison Neuza Perosini 861 -
2
votes1
answer1364
viewsQ: How to read XML in real live pattern?
I have a real estate system and with it I developed my own XML standard for integration with Portals. But the code that I use to read my XML, can not do the reading that is in the pattern of Viva…
-
0
votes2
answers1056
viewsQ: Query for MYSQL with IF to validate several table fields
I am developing a Property Classifieds, so I need to filter some fields if the internet user wants, such as: Number of rooms, Number of parking spaces, Number of bathrooms, etc. I need Query to have…
sqlasked Gladison Neuza Perosini 861 -
-1
votes3
answers795
viewsQ: How to do a query that only refers to the DIA of a date?
I have a MYSQL bank and I need an SQL that refers to the PAYMENT DAY in the DAY field (this field will only have the DAY of the month that the client chose to make the payment, this field is of the…
-
-4
votes1
answer63
viewsQ: What is the best way to use different logical operators in the same condition?
Precise using two different logical operators in the same condition. How to do it right? I did it this way: if($planohabilitargestao!="1000" || $planohabilitargestao!="200" ||…
-
1
votes2
answers2263
viewsQ: How to make CSS reminders when passing mouse cursor?
How do I exquisite one tooltip by hovering the mouse over the question mark ? See the example in the figure below : You can also view the example by clicking here.…
cssasked Gladison Neuza Perosini 861 -
0
votes2
answers6683
viewsQ: How to order by the largest number of groupings, excluding those who have no more than one grouping?
I need to sort my records by as many as GROUPINGS, that is, I have the SQL below and I need the column TYPE who is being grouped, is ordered from the largest cluster to the smallest, excluding the…
sqlasked Gladison Neuza Perosini 861 -
0
votes0
answers39
viewsQ: How to know the total of real estate and the total of photos in an SQL with two INNER JOIN?
I have the following SQL INNER JOIN and would like to know how I can get the total of REAL ESTATE and also the total of PHOTOS, I have already used COUNT(immovel.id) AS TOTAL to know the total of…
-
-1
votes1
answer111
viewsQ: How to make an SQL do the correct property count under certain criteria
I have the following SQL that correctly counts the number of properties: select clientes.id, clientes.nome, clientes.status, clientes.cliente, clientes.tipo, clientes.disponibilidade, imoveis.id,…
-
1
votes1
answer485
viewsQ: How to run a PHP script even with closed browser
I need a php script to run even with the browser closed. There is this possibility? I would like some suggestions. Thank you very much!
-
1
votes1
answer45
viewsQ: SQL to know the last edited record
I have the following SQL: $dcadastroultimo = date("d.m.y"); $sqlidcidade = "select id, titulo, tipo from imoveis where cod = '$cliente' AND ueditado <= '$dcadastroultimo' ORDER BY id ASC"; I need…
-
-5
votes2
answers54
viewsQ: I have a QUERY that doesn’t display what I really need
My Query: select id from clientes where cliente = '$cliente' AND status = '2' AND (tipo <> '0' AND (disponibilidade <> '0' OR vanual <> '0' OR vtemporada <> '0')) I need it…
-
0
votes1
answer47
viewsQ: Display SQL results with specific field filters
I have the SQL: select id,disponibilidade,tipo from clientes where cliente = '$cliente' AND status = '2' AND tipo = '0' OR disponibilidade <> '0' OR vanual <> '0' OR vtemporada <>…
-
-2
votes1
answer116
viewsQ: How to validate some fields in SQL
I have the following SQL $contarperfilclienteinsuficiente = "0"; $sqlxmlperfilclienteinsuficiente = "select COUNT(CASE WHEN tipo = 0 THEN 1 ELSE NULL END), COUNT(CASE WHEN tipo <> 0 THEN 1…
-
-1
votes1
answer296
viewsQ: How do I validate specific fields in SQL
I have the following code made by Amon: select id, disponibilidade, tipo from clientes where cliente = '$cliente' AND status = '2' AND (tipo <> '0' AND (disponibilidade <> '0' OR vanual…
-
6
votes2
answers985
viewsQ: How to make an INNER JOIN not repeat information
I got the following SQL INNER JOIN: $sqlxml = " SELECT clientes.id, clientes.nome, clientes.status, clientes.cliente, clientes.tipo, clientes.disponibilidade, imoveis.id, imoveis.cod,…
-
0
votes1
answer65
viewsQ: How do I display a load bar when my php page performs a task?
I have a page to send an email list in PHP. I need that while the page is running the upload to appear something showing that there is task in progress. Thank you very much!
phpasked Gladison Neuza Perosini 861 -
2
votes1
answer1420
viewsQ: SQL to count the characters of a field if it is less than 10
I am in great difficulty. I have the following SQL: $contardescricao = "0"; $sqlxmldescricao = "select id from imoveis where cod = '$cliente' AND (character_length(descricao)<'10')";…
-
0
votes2
answers523
viewsQ: Compare two fields between different tables
I have a big problem. This is the following I have the Script below: <?php $contarperfilclientecontar = "0"; $sqlxml = "SELECT id ,vvenda FROM imoveis WHERE cod = '1042' AND status = '2' ";…
-
1
votes2
answers41
viewsQ: Slowly recount the number of records in a table
Hello guys I have a field on my site that displays the number of registered customer records. How to recount this record more slowly for the user to view this recount? Example: Clientes cadastrados:…
-
-2
votes1
answer185
viewsQ: List multiple MYSQL records in PHP email to send them all at once
I have a real estate system that lists several MYSQL records. I have this code below so that these various records are sent in a single email, but it only sends a record. Look at the code: <?php…
phpasked Gladison Neuza Perosini 861 -
0
votes1
answer431
viewsQ: How to modify the image that appears on facebook when I put the link to my site?
Whenever I post the link of my site on facebook displays a default image that I used to use for this purpose. However I changed the image in the TAG below more than 6 days ago, but the old one still…
-
0
votes1
answer44
viewsQ: XML repeats record when generated in PHP
I have a PHP script that generates XML file, but something very strange is that it repeats several records of my real estate table and the worst thing is that there are no repeated properties.…
-
-3
votes3
answers3337
viewsQ: INNER JOIN is duplicating record
I have an INNER JOIN that is duplicating records in the view. Because in the database such records are not duplicated. select conta.dominio, conta.id, conta.modelo, imoveis.id, imoveis.cod,…
-
2
votes2
answers161
viewsQ: Alternative URL in PHP
I’m having a hard time creating an alternative, more user-friendly URL for my customers. The real estate system I have generates an alternative address for each of them, example:…
-
0
votes1
answer488
viewsQ: Pass PHP variable in AJAX
I have a script.js file that needs to capture a php variable, as I do? Look what I got: function atualizaFotos() { $.ajax({ url: "imovel-fotos-id.php?cliente=&cod=" }).done(function (resposta) {…
-
1
votes1
answer512
viewsQ: Does sharing with Whatsapp work only with ANDROID systems?
I have the HTML code to share site contents on Whatsapp: <a target="_blank" href="whatsapp://send?text=http://www.guaraparivirtual.com.br">Compartilhar</a> Only that it only works on…
-
0
votes0
answers2460
viewsQ: Share link on Instagram
Has to share link on Instagram with the same ease with what I do on Whatsapp by my site? Example: Whatsapp://send? text=http:// There is something simplified like this for Instagram?…
-
-4
votes1
answer1042
viewsQ: My site is giving as false (fraud, phishing), how to solve?
I have the mastery www.elmocorretordeimoveis.com.br and is giving as phony, I changed the up to the hosting but nothing solves.…
domainasked Gladison Neuza Perosini 861 -
0
votes2
answers1725
viewsQ: DIV with height:auto; does not readjust according to the height of the internal DIV
I have a DIV with height:auto; which does not adjust the height according to an internal div with height:120px; See the CSS .conteudo-modelo-3-0 { width:960px; height:auto; margin: 0 auto; }…
-
0
votes0
answers55
viewsQ: Fixed bar in CSS footer does not display correctly on iPad
I have a div to stay in the footer, but when accessed by the IPAD it creates a distance from the last DIV with the DIV fixed footer. CSS: .fixo-modelo-3-1 { position: fixed; width: 100%; height:…
-
2
votes3
answers3680
viewsQ: How do I eliminate the top space my DIV leaves?
I have a DIV of leaves a space between her and the top of the browser, see: http://www.roteirodoimovel.com.br/modelos/3/teste.php CSS: .element { position:relative; display: table; width:960px;…
-
1
votes0
answers394
viewsQ: I made the implementation of fb:app_id but debug is not being identified
made the implementation of: <meta property="fb:app_id" content="966242223397117" /> But when I debug by address: https://developers.facebook.com/tools/debug/og/object/ he informs that he has…
-
0
votes1
answer2645
viewsQ: Display div according to screen resolution
I have the following CSS script: <style type="text/css"> @media screen and (max-width: 600px) { .comp { background-color: #000000; display: block; } } </style> <div class="comp">…
-
1
votes2
answers1141
viewsQ: What code to search for available domains?
I have searched the network but found nothing that would help to have a PHP script that would check the searched domain. Look what I got: <? function whois ($domain, $tipo) { $server[0] =…
-
1
votes1
answer585
viewsQ: My video does not run in background css on tablets or ipads. Only on PC
Hello guys I have a video that runs normally in background css on PC. But when accessing the site by tablets or ipads it does not run. See the code: <video autoplay loop poster="torre.jpg"…
-
0
votes0
answers50
viewsQ: Difficulties to replace java code Upload script
I have the following code that uploads photos: <script type="text/javascript" src="js/jquery-1.6.1.min.js" ></script> <script type="text/javascript" src="js/ajaxupload.3.5.js"…
-
2
votes2
answers6479
viewsQ: How to insert CSS formatting in Java Script
I have the following Java Script code: status.text('Enviando...'); How do I format this information that will be written on the screen with CSS? Complete code: <script type="text/javascript"…
-
1
votes1
answer1592
viewsQ: Resize and write PNG with transparent background
I save an image PNG with transparent background normally, but when I use this code to resize the image it is with black and non-transparent background as it was before being resized:…
phpasked Gladison Neuza Perosini 861 -
-2
votes2
answers97
viewsQ: Display a DIV when you see that it has a background color
I need to know how to display a DIV only if it has a BACKGROUND color selected, if it does not have it, it remains hidden. Because I have a color palette in CSS and when I select a color, the hidden…