Tagged Questions
0
votes
3answers
22 views
How can I update 3 tables at the same time with 4 id fields?
I have a form for adding offers that belong to companies. I can delete and add them but I can't get the edit to use.
When I click edit only 1 table changes and I don't know how to work this out. I am ...
-1
votes
2answers
31 views
insert HTML form data to a MySQL database with PHP
I have a problem with this piece of code because it does't work but it seems to be semantically correct. It arrive up to "die("Errore nella query: $query.");" but I can't understand why. Help me ...
-1
votes
1answer
46 views
insert HTML form data to a MySQL database with PHP [SOLVED]
I have to insert: name, surname, email, username and password passed by an user by an HTML form to a PHP page that do this:
<?php
$name = $_POST["nm"];
$surname = $_POST["cgn"];
$email = ...
1
vote
3answers
64 views
How do I delete a row without having the id in url? codeigniter
I have a form for adding aanbiedingen (offers) from companies. I use three tables for this:
Aanbiedingen
- - - - - - -
idaanbiedingen //id
Aanbieding //offername
Omschrijving //description
Prijs ...
0
votes
0answers
5 views
How can I overwrite a mysql table record with the Contact Form DB Wordpress Plugin
How can I overwrite a mysql table record with the Contact Form DB Wordpress Plugin? I use the Fast Secure Contact Form Plugin as my HTML frontend contact form and I use the Contact Form DB Plugin to ...
0
votes
3answers
26 views
Submitting form error [closed]
The error shown is:
Parse error: syntax error, unexpected '"' in C:\Abyss Web
Server\htdocs\addemail.php on line 11
Using a basic HTML form, and the following php:
<?php
$dbc = ...
-1
votes
0answers
40 views
Filter through combobox and display result
I am new to this area and want to learn how things happen. So far I learned something from my friends, blogs... even this forum. I use three topics to get my things to work fine but now I am stuck, ...
0
votes
1answer
19 views
Search Form Suddenly Not displaying results
I have a search form that searches property listings from a database. Before it was working fine where I was able to display the search result and then all of a sudden it just did not show up. Is ...
-4
votes
0answers
46 views
Wrong data returned using form get [closed]
I'm sure im missing something simple but I can't seem to figure this out.
So this is what I am trying to do, I have a html form using "get" that gets a node id from a user and uses it to display ...
1
vote
2answers
38 views
PHP MSQL form submit fail [closed]
I'm trying to create a new entry in the database by submitting the form data.
It does the whole code without any errors but doesn't show any new elements in the db.
Does anybody have any idea whats ...
-1
votes
0answers
43 views
PHP MySQL Update query not working
I am trying to UPDATE MySQL database using PHP. I have two queries which perform INSERT and UPDATE functions. The UPDATE query is not working while INSERT query is working. Here is my PHP code:
...
1
vote
1answer
36 views
Registration form - upload image
I'm working on a registration form for a website, I'm trying to upload a photo to the server and pass the file path on to the database.
This is probably just a simple issue, as i'm quite the beginner ...
1
vote
2answers
44 views
PHP Sort By Drop down
I've taken an answer from a similar question on this site:
PHP Sort by using drop-down box
and adapted it to my needs but have come stuck on creating a drop down menu to sort products by.
My form ...
0
votes
2answers
39 views
Retrieving data instead of data id from myql
Hi i am working on php and mysql.
I have a form where in i am accessing data from one table and upon selection i am inserting that data in to another table. But my major constraint is the selected ...
0
votes
2answers
35 views
Invalid use of group function with MAX [duplicate]
My code gives me the following error:
Invalid use of group function
$query = mysql_query("SELECT `text` FROM `text` WHERE `id`=max(id)");
if(!$query)
die(mysql_error());
while($row = ...
-2
votes
1answer
34 views
HTML form data posting correctly but not making it to Mysql [closed]
I have the following HTML form:
<form action="insertcrew.php" method="post">
<table border="0" cellpadding="0" cellspacing="0" width="90%">
<tr align="center">
<td ...
0
votes
1answer
37 views
Upload image and video in form and store data in mysql
I've tried to make a form for uploading pictures and videos and renaming them with a specific id from mysql.
The data is stored in mysql, the picture is uploading but video is not uploaded. Could ...
0
votes
2answers
68 views
Php inserts blank data into table
My code inserts an empty record into the MySQL table "activate" instead of getting the data activate.html. It calls upon activate.php which I stripped down. I also should add that I am new to php, ...
1
vote
5answers
64 views
PHP to output single and double quotes as a value for an input element
I have a value ($title) that is stored in MySQL and is being called, using PHP, to be inserted into the value of an input element. The problem is when a single or double quote is used, the value of ...
-1
votes
0answers
19 views
Form designer Integrated with Mysql
Good evening
I want to make some forms which extracted from Mysql database. Is any form builder (Windows Software) integrate with Mysql to generate web forms contain the selected field i.e. if I have ...
0
votes
0answers
35 views
delete the row from a table without passing the value [closed]
<?php
include "ludigidb.php";
session_start();
if ( !isset( $_SESSION['user'] ) && $_SESSION['user'] == "") {
header("location:emc_admin.php");
}?>
<html ...
0
votes
6answers
49 views
PHP: Submit checkbox to database
I am having trouble submitted checkbox values and details to my database.
This is my HTML:
<form method="get" action="check.php">
<input type="checkbox" name="checkAccount"/>
...
0
votes
2answers
51 views
Form not posting to MySql Database [closed]
I can not get my form to post to MySQL Database.
My current code is as follows:
$ESN = check_input($_POST['ESN'], "Enter a ESN");
$ESN2 = check_input($_POST['ESN2'], "Confirm the ESN");
$Zip = ...
0
votes
1answer
45 views
Frustrated with PHP form - jquery mobile
Hi I am trying to resolve a problem - the problem is that I am getting the following message returned
Notice: Undefined index: username in J:\DynanicWeb_SM\EasyPHP-12.1\www\council\ratesform.php on ...
1
vote
2answers
74 views
How to use variables in WHERE clause for a SQL SELECT query
My SQL SELECT query has 3 variables set by a HTML form, however these variables can be null:
$suburb = (isset($_POST['suburb'])) ? $_POST['suburb'] : '';
$postcode = (isset($_POST['postcode'])) ...
-1
votes
1answer
31 views
Redirect to php page after insert data in mysql [duplicate]
I want to redirect my form to a php page after submit and after data of the form have been inserted (in a correct way) in my database.
I use action="insert-data.php" to insert data but I want to ...
-2
votes
1answer
49 views
MySQL, PHP - Forms Issue
This is a little part of a college website project I have and I've ran into this issue. I hope you can help me with it.
I've made a small representation of this issue so it's easier to read.
What I'm ...
0
votes
1answer
26 views
Show dates that are open for registration and option to register
I have 3 tables:
Members:
| Member_ID | Name |
--------------------
| 1 | John |
| 2 | Pete |
et cetera....
Courses:
| Course_ID | Date | Time | Name | ...
0
votes
1answer
39 views
Using Gravity Forms gform_after_submission to push submitted data to mySQL
I'm trying to use the gform_after_submission hook to push data to an externally hosted mySQL table. The script I am using is not showing any errors but also is not having any effect.
I am using the ...
-1
votes
2answers
51 views
php/mysql/jquery (broken with simple jquery code)
I have been trying to create an SPA that signs up a user, stores the user in the database, and then displays the user info in a div. I am using PHP/MYSQL and jQuery. Here is a walk through for the ...
-1
votes
3answers
51 views
How to retrieve data from mysql array and make checkbox checked in a form
i have a problem retrieving data from mysql array, what i want to do is, when user open the same form next time for existing ID, he should see which option is checked, and which not, so, if he submit ...
0
votes
0answers
36 views
ajax form submission with second form submission if successful
I'm currently building a system using ExpressionEngine that allows users to answer questions in exchange for points, they can then use these points to claim prizes.
I've been writing the ...
1
vote
3answers
45 views
Set form dropdown depending on PHP variable
I have a drop down form item with four options.
<p>Priority:
<select required name=\"priority\">
<option default value=\"1\">1 - 10 days</option>
<option ...
-2
votes
2answers
30 views
How can I make a quick edit text link to auto fill form information from a mysql database
How can I make a quick edit text link to auto fill form information from a mysql database? So basically, you click on the number and it fills in the create/edit transaction with the information from ...
-5
votes
1answer
26 views
option form with php and mysql [closed]
I've created a form for writing a name and select a category. (The categories are columns in a database).
The goal is that the user can register "Name", select a category (to know which column to put ...
0
votes
1answer
65 views
PHP: 2 forms different action pages, only 1 form action works
I have two forms on my page. But the one action page(approve.php) doesn't seem to work. I need to set a field as active for the specific id, if it's approve or rejected. Is there any way to do it on ...
0
votes
2answers
54 views
Multi-Page form submitted to single row - PHP MYSQL
I have a current project which I am having some troubles with. It will be written in PHP / MySQL
It is a multiple page form (3 pages)
When the user clicks 'next page' (submit button) the data needs ...
0
votes
1answer
35 views
SQL Query onsubmit - change existing results
Good morning everyone,
I have a page that performs a default connection to database, search and looped output of data to the page by applying a template for each result in the table using this code:
...
-1
votes
3answers
64 views
Whats wrong with my PHP signup form? [closed]
My PHP/SQL form code is not outputting anything. I tried debugging it and echoing out variables but still no luck. In a few instances I have echos commented out for debugging but they dont work. I do ...
0
votes
4answers
83 views
Update partially dynamic form with AJAX (No Refresh)- can't get this to work
I need to have this form post to the database and retrieve the newly added information without refreshing using XHR.
The page loads with a few initial elements that can be edited and can have more ...
0
votes
3answers
170 views
PHP\MYSQL\AJAX(?) - Struggling with how to dynamically update form without invoking page refresh
Ok, so I'm fairly new to dynamically updating a database without invoking a page refresh. I'm trying to create, on a far simpler scale, something like http://mytinytodo.net/
The end goal that I'm ...
1
vote
2answers
41 views
Dynamic Forms—Proper way to Setup Database?
A client for which I'm working on a web app needs various applications for some services they offer. They'd like to be able to manage/create these applications themselves. I'm having trouble figuring ...
0
votes
1answer
30 views
last insert id in pdo
I have a form with only one input, when I push the button ajax make the call and send the data to the response.php, here with the pdo insert the data to db...here is all ok, but in the page have a ...
0
votes
4answers
81 views
inserting into mysql with php
I am trying my hand at inserting into a mysql db via a php form and im running into an issue where only the second form field is being entered but not the first.
EDIT
Here is the code after rewrite.
...
0
votes
1answer
56 views
Can't get form to update mysql record
I have a three part form that works like this, the first form is called create_ticket.php and it's basically a form with a customers contact info and what they want done. When the ticket is filled out ...
0
votes
2answers
42 views
form_dropdown value not updating on submit codeigniter
Situation
I have an editform for editing companies in my database. I use a joined table to add a category to the company.
My tables:
Companies
---------
idcompanies
companyname
country
telephone
...
0
votes
1answer
33 views
How to create MySQL field for date format input?
I have a select date field in my HTML form created using Javascript as follow:
<tr>
<td valign="top"><label for="received">Received Date:</label></td>
<td ...
-3
votes
1answer
45 views
Is there a better way to retreive $_POST variables for use with multiple functions? [closed]
I have a form that is posting ($_POST) contact info which I then insert into a mysql database and send via email to a customer service rep. There are three functions, each function validates the data ...
-1
votes
1answer
39 views
not getting the form values from login form
here is my code . i am not able to get the form data via php. even i echoed the form data but it is showing nothinh only reloading the login page
login form
<form id="loginform" action="sql.php" ...
-1
votes
0answers
25 views
Dynamic Form Generation and Storage [closed]
I would like to get some feedback on a schema and php structure.
I am trying to create a system that allows users to create custom form objects that can be stored and edited. My original idea was to ...










