All Questions
4,088 questions
0
votes
0
answers
15
views
PHP script showing as a page [duplicate]
So recently I started coding websites for fun and now I'm trying to write a php script which will collect the data from it after clicking "submit", but when I click it, it shows a black page ...
0
votes
1
answer
83
views
I need to know can i get a data of locale storage with php to store it to mySql [closed]
//that's php file
<?php
if (isset($_post['cree'])) {
require('/config/connexion.php');
if (!empty(isset($_post['email'])) && !empty(isset($_post['pwr'])) && !empty(isset($...
0
votes
0
answers
12
views
"HTML Form Select Tag Issue: Only First Word of Multi-Word Selections Inserted into MySQL Table" [duplicate]
A single HTML select tag is populated by a MySQL database table. When a user selects an option containing multiple words and submits it, only the first word of the selection is saved.
This is the code ...
0
votes
0
answers
65
views
Registration Form not sending data into database
I'm trying to make a find my friends clone but i'm currently having issues with the registration form not inputting data into MySQL database.Login form is able to grab info from the database it's just ...
-2
votes
1
answer
47
views
Can't display in index.php my data table when items are deleted [duplicate]
I have a form and I connected with MySQL, so whenever I fill it up it will be shown in mySQL. The next step is to have a table of contents in my index.php, which I have. But now when I wanna press the ...
-2
votes
1
answer
51
views
Why is PHP not sending form scores to PHP MyAdmin database?
I am a beginner at web development, and for a college project website I have created a form in HTML with some radio button questions, and then JavaScript which will check the answers against the ...
0
votes
0
answers
48
views
Why isnt the value from 'clave' being inserted into my database?
I want the user to enter an email, password and user type. In the database, what should be saved is the email, password, user type, time and date. All of those are being saved correctly in the ...
0
votes
0
answers
92
views
php form still refreshing with ajax
this is my html form
<form action="" method="post" id="form">
<input type="text" placeholder="Name..." name="name"id="name&...
0
votes
0
answers
50
views
acton page with below php mysql form
i have small php mysql form with below code. both form and processing code on same page and its working fine too. But i want to use action in form tag, so that form can move to another page. and when ...
0
votes
1
answer
46
views
Whenever I submit a user update form in my dashboard, my error array returns a flag for unchanged values
Currently working on a project that requires me to build an admin area for an admin to manage users and permissions.
I'm using an array to return errors to admins if they submit duplicate data to ...
0
votes
2
answers
295
views
Flask Form Authentication validation with MySQL database
Hi there good programmers. I am simply trying to take input from a register form, check and confirm them by validating them against MySQL-workbench database. NB, I am fairly new to Flask and python.
...
0
votes
0
answers
69
views
Login page is accepting all emails and passwords including those not stored in the database. No restricted acess at all
I am working on a to-do app. I have already setup the signup and login page. Signup page is working perfectly as all details been inputed is already stored in the database(sql). The main challenge now ...
0
votes
0
answers
73
views
How to determine if a (combo box) item is selected vs manually typed data?
I'm making an internal app (LEMP stack) for taking orders for tickets for regularly scheduled events. Many customers buy tix on a regular basis so...
I want to populate a combo box (datalist - for the ...
0
votes
1
answer
115
views
Insert datetime into mysql java spring mvc
I save the column gioBatDau in MySQL as datetime, in POJO as
@Column(name = "GioBatDau")
@Temporal(TemporalType.TIMESTAMP)
@DateTimeFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss")
...
0
votes
2
answers
25
views
I'm trying to make loginform check using knex but it doesn't work
My Code:
function checkLogIn() {
var emailValue = document.getElementById("emails").value;
var usernameValue = document.getElementById("username").value;
var passwordValue = ...