I have this js, and this html:
$(document).on('click', '.validar', function (event) {
event.preventDefault();
var cantidad = 0;
var obj = {
"correo": $(".txtEmail").attr("id")
};
$.each(obj,...
I'm doing a program where I compare in a database (Mysql-Workbench) 2 columns (difficulty, difficulty_student) of 2 different tables (EXERCISES, ANSWERS) in a column difficulty_choice of the table < strong> ANSWERS .
I mean th...
We have a page with HTLM and php code with include (Busconv.php), in which I perform a search on bb.ddd, I would like to know how I can issue a message when I press the SEARCH button and there is no record in the bb.dd ..
The approach...
I have the following function that prints to generate preview:
<script src="Scripts/jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function () {
$("input#imprime").on('click', function (ev) {...
Good morning, I have a problem. I am starting in php and what happens is that I divided my code into several files so as not to have everything jumbled up in a single file. I'm doing a login type entry however I have two options; one allows the...
Hi, I'm new to this, I need help.
I have a form where I enter the data but when I click on the button I do not execute any action .. Help me please
This is the code
<?php
require_once "../Modelo/ModeloUsuario.php";
ob_start();
?>
<...
I would like to know how I can show divs that depend on two select and a submit button. The problem I have is that the second selection varies depending on what is chosen in the first, so I do not know how I can show different divs according to...