I want to create a "date" search system. It may not be the best question in the world. But I think it's valid and interesting, with the potential to generate good content for the site.
Example
var buscar = function() {
if (data == "0...
Something wrong with this query?
All data is displayed without any filtering. But when I shoot the LIKEs it works or if I take the BETWEEN and leave the LIKEs it works. One only works without the other. Why?
$produto =...
The search box does not work, I type the title of the text, the keywords, and all the words used in the text, and it simply appears that it has no results ...
I've tested several other search boxes and nothing appears ... is it a problem in t...
I have a simple command
SELECT MATRICULA FROM ALUNOS WHERE ID_ALUNO IN (1,2,3,4,5,6)
I would like to know how to get a result like this in SQL:
ID | STUDENT
1 | LUIZ
2 | MARIA
3 |
4 | JOHN
5 | CARLOS
6 |
That is, bri...
I have a spreadsheet with multiple tabs.
On the first tab I have the following table:
Intab2,typetheclientandtype,andIwanttoreturntheID.ForthisIamusingthefollowingcodeinVBA:tipo=ActiveCell.Offset(0,-1).Valuecliente=Range("D5").Value
ActiveCell....
I'm having trouble fetching some data from a specific parameter in my android app, in webservice I already search and using GET already with the data I want it brings me the data, but I need it when I insert a text inside my edittext and hit the...
People, I really need your help.
I'm developing a website. I'm studying more accurately html5 and css3, and I'm getting a problem I can not solve ...
Here is the format of the site in CodePen: link
And if you want to download on your...
I need to fetch any term on Google and get a list of the results of that search. I'm trying to do this using the Google Custom Search API but I'm not getting satisfactory results.
For example, when I search for the term "bidding" with my...
Hi, I have a function that searches a list for the occurrence of any string typed in the field that is passed as its parameter, it works fine for fetching these strings:
$scope.$watch('q', function(newValue, oldValue) {
if (oldValue != n...
How to do a search within an array in javascript?
The solution I use is a gambiarra.
x = ['a','b','c','d'];
if ( x.indexOf('a') != -1) {
console.log('Verdadeiro');
} else {
console.log('Falso');
}