Posts by Jasar Orion • 2,233 points
129 posts
-
1
votes1
answer50
viewsA: I made a capture of fields of the comic and gives this error
I see some problems there 1)exchange your Insert line for this $inserindoBanco = "INSERT INTO `clientes` set `saldoDevedor`='".valorDevido."'"; 2) value payable is not defined 3) you are doing some…
-
1
votes2
answers761
viewsA: Firebird - Select to join two or more lines
I think it would be something like this select Cliente_id, SUM(credito), SUM(debito), pedido from tabela group by pedido where this table you change to the name of your table, what I did was to…
-
1
votes2
answers539
viewsA: Return records Timestamp() field
can do it this way WHERE date(int_data) ='20160901' or even more "relaxed" WHERE int_data like '2016-09-01%' in the first solution you make mysql process the date and in the second you just filter…
sqlanswered Jasar Orion 2,233 -
-1
votes3
answers172
viewsA: Blur effect on image
I use this paste to make the Blur in the images Blurry Efect I hope it helps. in git itself has been explaining how to include lib and how to run Cod, with few lines you do Blur in the images.…
androidanswered Jasar Orion 2,233 -
0
votes2
answers2197
viewsA: Is encrypting the database an efficient measure? How to protect data against leaks?
Good morning, for passwords I always use a hash sha1 or something that has no return, always merge with a key of its own as date or a text or something that varies from client to client. To encrypt…
-
4
votes1
answer4820
viewsA: Run a cron Cpanel URL
Try this on here wget -O /dev/null http://minhaurl.com.br/index.php/sms/enviodiario when I need to use I do this way, see and Curl is enabled on your server and if you want to use with Curl you do…
-
1
votes3
answers1227
viewsA: Take the id of a database list, and use in another page to insert phones in PHP
You can pass to String nomee by get will stay like this. <a href="adicionatel.php?nome=<?php echo $nomee;?>" class="btn btn-success">Adicionar telefone de contato</a> on your…
-
0
votes3
answers85
viewsA: Ajax code is not working
Test like this <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <title></title> </head> <body>…
-
0
votes3
answers47
viewsA: PHP data in Javascript document
test this here in place of your php <?PHP print("$dados[perc1] , $dados[perc2]"); ?> will stay like this initSparklineCharts: function() { if (!jQuery().sparkline) { return; }…
-
0
votes1
answer59
viewsA: Doubt with htaccess file
Does so in the htaccess of the web version <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_USER_AGENT} "android|blackberry|googlebot-mobile|iemobile|ipad|iphone|ipod|opera…
htaccessanswered Jasar Orion 2,233 -
-2
votes2
answers2104
viewsA: Doubt about RG - what is the best way to control the field?
with Masked input vc should use as follows $("#RG").mask("99.999.999.9?99-*"); so the last field becomes optional and the person can put X if they have. it is always good you do a validation of RG…
-
2
votes1
answer1475
viewsA: Get last id inserted in mysql with php
despite being a duplicate post you picked up as follows $idInserido=mysqli_insert_id($conexao);
-
0
votes1
answer845
viewsA: Graphic with Google Charts
just replace function drawChart() { var data = google.visualization.arrayToDataTable([ ['Horario', 'Sales'], ['2004', 0.500], ['2005', 0.1], ['2006', 0.200], ['2007', 0.30] ]); for something like…
-
0
votes2
answers275
viewsA: Return values using Dialog’s
on the line myDialog.show(); is running the button even if there is no click. as soon as you instantiate the object it performs it put this Cod inside the click solving functions.…
-
1
votes1
answer575
viewsA: How to run a routine periodically automatically on a java server like wildfly10
wildfly server 10 is based on Redhat. use crontab to perform periodic tasks…
javaanswered Jasar Orion 2,233 -
-2
votes2
answers732
viewsA: How to track Curl PHP redirect?
I don’t usually know if you’re already doing this use the -L option to track the redirect. Otherwise access the address by the browser and after the redirect replace the URL with the new one. curl…
phpanswered Jasar Orion 2,233 -
0
votes2
answers623
viewsA: Last update Mysql table
all changes are saved in mysql information_schema so use something similar to this query SELECT UPDATE_TIME, TABLE_SCHEMA, TABLE_NAME FROM information_schema.tables ORDER BY UPDATE_TIME DESC,…
-
0
votes2
answers827
viewsA: How to make a form appear on the screen when clicking a link?
You can use <iframe> or you can still make a request in ajax with jquery for this follows below tutorial link for the two summers <iframe src="paginaembranco.html"…
htmlanswered Jasar Orion 2,233 -
0
votes1
answer46
viewsA: SQL query using order by filtering by log
test this query select * from tb_tabela order by tb_tabela.produto ASC, tb_tabela.Max DESC, tb_tabela.Min DESC should work ( edited )
-
0
votes1
answer113
viewsA: Multiple sharing users when installing SQL Server
For each user q vc creates within sql server it must ta create a corresponding for Windows so that this user can connect externally. check how many users you have in your bank.
-
1
votes1
answer1674
viewsA: Request header field Content-Type is not allowed by Access-Control-Allow-Headers in preflight
Good evening , by what I remember access control origin no longer accepts * tries to use like this header("Access-Control-Allow-Origin: {$_SERVER['HTTP_ORIGIN']}");…
-
2
votes2
answers64
viewsA: Variable does not appear as declared
Your name not as variable, but as String, should look like this: print(" Hi, "+name+" welcome") The \n in the text is why you are using the command print, this command prints a code for a new line…
xcodeanswered Jasar Orion 2,233 -
1
votes1
answer5082
viewsQ: Create PDF from a LARGE HTML file with DOMPDF
I am trying to convert a 40mb html PDF file using DOMPDF. Even with 3600 seconds timeout, it does not generate the file, nor if I put it to as 1x cron task a day or run on command line. my script…
-
-1
votes2
answers77
viewsA: Jquery Display and Hide Div Problem
Look you’re replacing all the contents of div for the result. That’s why it doesn’t show: document.getElementById("normal").innerHTML = (a / b); Everything within the div normal is replaced by…
-
3
votes2
answers12161
viewsA: Difference between RIGHT JOIN and LEFT JOIN
In terms of functioning there is no difference only in terms of concept as the name says righ or left or left if you use SELECT * FROM tabela_a a LEFT JOIN tabela_b b ON b.nome = a.nome; you will…
-
0
votes3
answers355
viewsA: Adjustable div with css
Basically it’s simple, use the concept of Even and Odd in the left columns float:left and on the right float:right.
cssanswered Jasar Orion 2,233 -
0
votes1
answer64
viewsA: Pass $_SESSION in load() jquery
If the pages are in the same domain put load it also works and I did a test site here and this ok.
-
2
votes1
answer46
viewsA: Some js are printing a strange number on my page
I managed to solve the problem opencart has in the header a function that prints the Analytics user in \catalog\view\theme\yourtheme\template\common\header.tpl found this here <?php echo…
-
0
votes1
answer46
viewsQ: Some js are printing a strange number on my page
Some Javascript or js is printing a strange number right at the bottom of the page on website here. I have tried to remove 1 java script at a time, but I did not find the cause of it, Is it the very…