Posts by Paulo Victor • 333 points
12 posts
-
1
votes3
answers608
viewsQ: Custom Filtering - Range Search - Datatables
I am using one of the functions of Datatables that is interval searching, but this type of search only accepts integer numbers. I would like to make this survey accept sample date formats…
-
7
votes3
answers5954
viewsQ: How to upload to Laravel 5.7
Controller <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Denuncia; use Illuminate\Support\Facades\DB; class AlunoController extends Controller { public function…
-
2
votes1
answer1690
viewsQ: Modal to inform users that the registration was carried out successfully
Well I wanted that when the user was going to register in the system and if everything worked out a modal appeared saying that: User successfully registered with if there is already a matricula or…
-
1
votes1
answer80
viewsQ: Prohibit user to register 2 users with equal emails and matriculations
I wanted that when the users went to register, if they informed an existing email or enrollment in the bank give a message and it was forbidden to register in the system, in the code below it…
-
2
votes1
answer84
viewsQ: I am not able to enter data in the database
I’m unable to enter data into the database, I was using the PDO, but now I’m using the MySql, because I was only able to list database data with the MySql, I am able to list the data but I am not…
-
1
votes1
answer44
viewsQ: Error while listing database data
You’re making the following mistake : Notice: Undefined variable: denuncia in C: xampp htdocs Nise geral.php on line 262 Warning: Invalid argument supplied for foreach() in C: xampp htdocs Nise…
-
-1
votes1
answer63
viewsQ: Error Function to return Alert
I have a function that if she returns 1 appears a alert: form was successfully sent If you return 0, appears a alert: error sending your form. When I leave the form blank the expected behavior would…
-
2
votes2
answers933
viewsQ: I wanted to show an Alert after a form has been sent, PHP, JAVASCRIPT, HTML, AJAX
I’m in trouble, where my form is being sent to the bank but in Alert appears alert("erro ao enviar formulário");. <?php if(!empty($_FILES['uploaded_file'])){ $username = 'root'; $password = '';…
-
1
votes2
answers335
viewsQ: I wanted to put an Alert in my login screen PHP, JS, HTML, MYSQL
I wanted to put an Alert on my login screen, if the registration and password match what’s in the bank pass straight, if not, an Alert appeared or the boxes were red with the error with something…
-
3
votes1
answer1684
viewsQ: Confirm PHP password, Javascript, HTML
I wanted to do the password check, if the passwords are different an Alert appeared with something like "Passwords do not match", if yes, pass through. But the way I’m doing it comes a message from…
-
1
votes1
answer2078
viewsQ: Notice: Undefined index
I don’t know why you’re making this mistake, I’ve gone over everything. Notice: Undefined index: first Notice: Undefined index: last name in C: xampp htdocs project registro.php on line 15 Notice:…
-
-1
votes2
answers109
viewsQ: I want to put an Alert after sending the form to the database, with a response like "Your message has been sent."
I wanted when the form was sent to the Bank to appear an Alert with something like "It worked out" if it did not error "Error sending your message". <?php if(!empty($_FILES['uploaded_file'])){…