All Questions
31,947 questions
-1
votes
0
answers
65
views
problems with recaptcha V2 verification [closed]
I have a html / php contact form that apparently on the web side works correctly with Recaptcha v2, however **something is wrong with the server side verification because many bots pass the ...
0
votes
0
answers
33
views
Why login key is not being set inside PHP super global variable $_POST? [duplicate]
I am trying to understand how $_POST variable is being set when sending form data. I have understood for any variable to set inside $_POST, I must use the method post and all the form elements must ...
-2
votes
0
answers
86
views
I was doing 2 CTF exercises from college and I reached a point where I can't progress anymore, if anyone can help me, I would be very grateful
"In this challenge, participants must investigate a fictional website in search of hidden information that will lead to the discovery of a flag. The main skill to be tested is the ability to ...
-1
votes
0
answers
27
views
Confusion with inserting the data from the form in the user profile into the database [closed]
I'm currently trying to write a website for an assignment, while I have most of the PHP functionality required working I cannot get this section of it to work.
The aim is to allow the user to add ...
1
vote
1
answer
16
views
Simfatic\FormHandler throwing library errors on Hostinger but not locally
So I'm using Simfatic\FormHandler to create a simple form that sends out an email, tested locally all works fine.
I put the stuff on Hostinger and all of a sudden it's saying it can't find ...
1
vote
1
answer
40
views
Post a form via jquery from a same page where url is slightly changed but working on one url and refreshes the page on other url
I'm facing a weird problem where I have to reach a form page via two methods: create and edit. When posting from the create URL, the same form works perfectly, but whenever I post via edit or re-...
0
votes
0
answers
36
views
Elementor Custom code | InputField query selector
I am using elementor custom code and elementor form. I would like to have an auto selector for airports using the API. My code is currently as follows and I am getting a special character error for &...
0
votes
0
answers
74
views
How do I allow for multiple upload file inputs on the same page?
I am working on an admin page, where I want to be able to upload images and associate them with certain objects from my database.
I have a table that is generated from the database, each with a delete ...
0
votes
1
answer
55
views
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'reports.'
So I am trying to open one of my blades that contain reported's data. But, it keeps me sending an error like that and this is the controller :
<?php
namespace App\Http\Controllers;
use Illuminate\...
0
votes
1
answer
43
views
i got data from a form using the post method and i want to pass that value to another page using but it is not working. Redirect a POST to a GET
please help me correct this code
$salt = 'XyZzy12*_';
$stored_hash = '1a52e17fa899cf40fb04cfc42e6352f1';
//$stored_hash = 'a8609e8d62c043243c4e201cbb342862'; // Pw is meow123
$salted = md5($salt);
$...
0
votes
1
answer
80
views
Laravel Livewire form with multiple rows and multiple related selects
I try to create a form that create new rows at demmand. This rows have each one diferents selects related one each other: when one is updated, the other is updated their options list. But when updated ...
-1
votes
3
answers
80
views
Issue when validating checkbox in Javascript
I've created a custom contact form for a website using Wordpress.
All the fields are required to send the form. In case of an error, the validation is done in Javascript to avoid reloading the page. ...
-1
votes
1
answer
64
views
How to submit a form that is the result of an XMLHttpRequest inside an empty div, without page refresh?
I'm trying to make a chatroom like website. But I ran into a big problem relating to AJAX.
I have an empty div in the main page inside which I load all the messages that are found in the database ...
0
votes
1
answer
33
views
Prevent users from visiting a 'form-sent confirmation page' unless they arrive there through the form
I have a webform which allows users to submit their data.
Note: The data is not stored on the server, but is sent to an email address.
When the user clicks the 'Submit' button, the form-handler ...
0
votes
0
answers
53
views
Error when insert data with javascript form
I have an order creation form that allows me to enter information for several products to be linked to the order.
Each product can have production items, and I'd like to add the possibility of ...