-1
votes
3answers
39 views

MySQL Syntax Error During UPDATE [closed]

if($_POST['submit']) { $Day1 = $_POST['day1']; $Day2 = $_POST['day2']; $Day3 = $_POST['day3']; $Day4 = $_POST['day4']; $Day5 = $_POST['day5']; $Day6 = $_POST['day6']; $Day7 ...
0
votes
5answers
62 views

Unable to Insert Data into MySql Table using username from another $_POST function

echo "Hello : ".$_SESSION['doc_username']; //username sent from a different page by post method $username = $_POST['username']; echo "<p><strong>Showing Health ...
1
vote
1answer
167 views

inserting data in database using form connected through python

i have created a form in a html document to get data from the user.and i have created a database in mysql. i am using python to connect the database to the form so that user input populates the ...
0
votes
2answers
64 views

mysql php table update

I have a form that is populated from a MySQL connection. The from names look like this: <td><input type="text" name="Time1[]" value="<?php echo htmlentities($row_newNext['Time1'], ...
-2
votes
1answer
160 views

keep user input in html form & update [closed]

i've created a html form where i wanted to allow user to update their input after form submitted. so, after submission occur, the form is like: <form name="myForm" method="post" ...
0
votes
1answer
220 views

HTML Login Form for PHPMyAdmin

I am currently writing a php module for our billing software that will allow us to easily create/terminate/etc. databases for our customers as a free service. The module template supports the creation ...
0
votes
1answer
124 views

Simple PHP form to MySQL not working, maybe inaccuracy with the table?

The following code is made by this tutorial. The database structure is here: http://www.shareimages.com/image.php?62275-pJqgl5ejk6Col5yVnaY-local_mysql_screen.gif If i try insert data to the more ...
1
vote
2answers
59 views

Custom Number Of Inputs

I need to enter UTM coordinates of certain polygons to a HTML form. I will handle the form values with php to insert into mysql db. But number of polygons and points of the polygons can be various. ...
0
votes
2answers
151 views

Submitting form via javascript

I have a page where the user gets directed to if they want to edit some text which was on the previous screen. Once they have finished editing the form data it gets submitted for validation to ...
0
votes
3answers
159 views

Processing an unknown amount of checkboxes

I'm generating an unknown amount of checkboxes in my form using mysql, this number will always vary, $frinfoq = mysql_query($frinfo) or die (mysql_error()); while($frow = ...
1
vote
2answers
675 views

Filtering data with a PHP, Jquery, AJAX form mechanism and data from Database

I am trying to create a form that utilizes PHP and Jquery AJAX form submission mechanism which 'filters' data from a mySQL database. There are three dropdown bars in the form with a 'submit' button, ...
0
votes
1answer
322 views

Echoing row name where posted ID, for pre-selected form value

This will hopefully be an easy one, but I'm lacking the skills! <select name="search_category" id="select1" > <option value="">By Category</option> ...
1
vote
2answers
1k views

Generating HTML Form from database using PHP

I'm building a basic website that will offer a quiz dynamically generated from a MySQL database. Based on my current database schema, I'm having trouble understanding how I will generate the ...
3
votes
3answers
3k views

Database Design For Developing 'Quiz' Web Application using PHP and MySQL

So, I'm trying to learn PHP and MySQL (I have a basic understanding of both; I've read the first half of both Head First SQL and Head First PHP & MySQL) and I figure the best way to solidify my ...
-1
votes
2answers
412 views

Creating a database query based on the users input from a form?

I have an HTML form that lets the user write what they want to search for. In this case a Name. The form works, but it's in the php. I don't know what I have to write to get MySQL to search the ...
1
vote
3answers
465 views

SQL ORDER BY (Starting with)

I have a database with the following table: CATEGORY id name Another entity in the database can be assigned any of these categories through a foreign key on that entity. In my PHP application, I ...
0
votes
1answer
114 views

accepting user data from users and displaying it

I am new to web programming. I am currently using an html form which accepts data (many fields with different datatypes eg. date) and add it to mysql server using php and display everyones form ...
1
vote
2answers
250 views

How to catch data from a drop down list to use it in SQL query?

I've been trying to fix this code but I couldn't. if ($_POST['number']) { $number = $_POST['number']; $code = $_POST['code']; // I INSERTED THIS HERE TO GET THE DROPDOWN LIST VALUE ...
0
votes
2answers
282 views

PHP/MySQL - how to combine variables from separate forms to build a query?

Please see the code in this pastebin: http://pastebin.com/5gKwb7gi It is quite a lot of code but I think all you gurus on here will understand it! Basically what I have just confused myself is, I ...
0
votes
1answer
454 views

is there any tool which can autogenerate html form from database field

I have database table and i use netbeans to auto generate POJO from it. Now is it possible that html form can also bve auto generated with input elements with name being the table fields. If ...
1
vote
2answers
2k views

How to auto fill form data?

I have two questions: 1) I am trying to fill a form's fields with data from a mysql table. But for some unknown reason, I am getting a trailing / at the end of the values as soon as I put them in a ...