Posts by Caio Vieira • 296 points
18 posts
-
-1
votes1
answer89
viewsA: How to call a zend method using Jquery?
$(function () { $(".nr_ordem_exibicao").click(function (e) { e.preventDefault()
-
0
votes1
answer84
viewsQ: Relationship model and entity
Guys, I’m setting up a website that has the artist chart and an artist can play more than one musical genre, as I would put in the database the genres that the artist plays ?
-
0
votes0
answers17
viewsQ: Page printing PHP script
The page is printing own lines of php code from the following line: 5189.82){ Entire code: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <style type="text/css">…
phpasked Caio Vieira 296 -
1
votes1
answer60
viewsQ: Error if condition
I have a condition if that only sends to Him, even when the boolean returned must be true, the condition falls on the else, it must be a silly mistake, but I’ve already reviewed the code and found…
javascriptasked Caio Vieira 296 -
2
votes2
answers85
viewsQ: Replacing characters in a string
I have a string to be passed through the form and would like to replace some characters of it so that it is in the form of numeral: if(form1.autonomoBonusBruto.value.includes("R$")){…
-
-1
votes3
answers63
viewsQ: Page not printing the results
I am creating a table with a cell in the form of input text to enter a number, and the rest of the cells will be printed after the operations to determine their value. After the table there is a…
phpasked Caio Vieira 296 -
0
votes1
answer73
viewsQ: Configuring API Google Analytics
After you create an account in Google Analytics, Google sends you a code, this code should be inserted in the index page of the site or in all pages related to the site ?
google-analyticsasked Caio Vieira 296 -
-1
votes2
answers782
viewsQ: Mark radiobutton in php
How do I leave the radiobutton "checked" in PHP ? I’m having trouble with that the name of the radiobutton is sex and I need to do a check in the database if the sex is’M' it marks one of the sex…
phpasked Caio Vieira 296 -
1
votes1
answer144
viewsQ: Passing data from a form on a page to another page for textbox
How do I pass the data of a form (query.php) of a page to the textbox and a radiobutton of the form (register.php) of another page without the action ? Because I have two Ubmit buttons for that same…
phpasked Caio Vieira 296 -
-2
votes2
answers45
viewsQ: Counting array erroneously
I’m trying to make an if structure that depends on the number of content in an array and apparently is counting wrong, because regardless of how much content I select it redirects me to the page I…
phpasked Caio Vieira 296 -
0
votes1
answer51
viewsQ: Redirecting data from one form to another page
How do I take the completed data in a form on one page and send it to another page within the textbox hers.
phpasked Caio Vieira 296 -
1
votes1
answer32
viewsQ: Failed validation
I’m writing a Function to validate only numbers in one case and only letters in another, however, when I only had a Function to validate Noughts, Function worked, when I have both at the same time,…
javascriptasked Caio Vieira 296 -
3
votes1
answer11869
viewsQ: Placing html code inside php
I’m trying to put a html code inside a php and it’s not working, as I do to fit html code inside php ? <?php if(isset($_POST['buscarNome']) && $_POST['buscarNome'] == 'Buscar') { $nome =…
phpasked Caio Vieira 296 -
1
votes2
answers15532
viewsA: How to do an UPDATE using data from two different tables?
To make manipulations with more than one table use the command JOIN: UPDATE tabela1 JOIN tabela2 SET dado1 = dado1 + tabela2.dado2;
-
3
votes2
answers1191
viewsQ: Doing operations/handling Datetime
The idea is for the user to type in a textbox to horaEntrada and in another to horaSaida where in the case of these two variables they should have the format "HH:mm" hours and minutes only…
-
1
votes1
answer127
viewsQ: Error in javascript/html code
I don’t know where the error of my code comes from, I already checked it and I can’t find the fault, it turns out that the functions that were to be called are not being executed, follow the code:…
-
-2
votes1
answer32
viewsQ: Error in html file
I am trying to make a form in html in which it receives age name and sex of a person and make comparisons to see if the past age is greater than the age that is currently mind in the old age textbox…
-
3
votes2
answers1159
viewsQ: Convert string to integer
I can’t convert my text TextBox in one piece. namespace Pag98_Exe1 { public partial class frmveiculos : Form { public frmveiculos() { InitializeComponent(); } Veiculos veiculos = new Veiculos();…