Tagged Questions
0
votes
0answers
30 views
JavaScript Suddenly not working - TypeError: document.hform.sSecureUser is undefined
My Code:
<?php include ($_SERVER['DOCUMENT_ROOT'].'/functions/functions.php');?>
<div id="hasJavaScript">
<form name="signup">
<label>Username</label> ...
-1
votes
1answer
45 views
Form POST to 2 URLS
I need to post a single form to 2 different URLs. One is just a logging script so the response doesn't need to be passed back to the user.
Unfortunately in this instance I can't just post to a ...
-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 ...
0
votes
2answers
82 views
CodeIgniter's form action is not working properly
I have failed many times to figure out why the action attribute of my form is malfunctioning when I click the submit button.
All I wanted to do is to pass the form data to the controller. But what's ...
-2
votes
0answers
50 views
Pass form data to PHP script and then Google Docs Form [closed]
I currently have an HTML form which passes its data to a Google Docs form as a quick and easy way to store the data for sales reps to access (they all use Google Docs). This works great, but I'd like ...
3
votes
2answers
87 views
Auto Incremented Name Attribute on Radio Buttons
I have a form that has a set of radio buttons, and I am sending the value of the checked button to another page with php. The form has the option to add another set of the same radio buttons, so if I ...
0
votes
1answer
29 views
php bool statement to check if file has been uploaded is not working properly
I have a simple php page where you add a contact and you have the option of giving them a picture. If no picture is uploaded then the contact will be given a default picture already on the server.
...
1
vote
1answer
163 views
HTML Form with PHP Captcha Plugin, I'm running into some issues
I have looked for similar questions and I did not find my particular case.
I am using the PHP Captcha plugin within a form that I have. I handle the incorrect and correct captcha entries very ...
-3
votes
1answer
45 views
Handling selectbox options with strlen() and strcmp() [closed]
What php code should I start writing first? And how should I go about handling the strings submitted by this html form so that they can be processed with either strlen() or strcmp()? any help/pointers ...
0
votes
0answers
87 views
Submit Form in PHP
I'm building a script to parse some simple HTML data, but I need to submit the HTML form. I can't even if I tried many ways. Here is the code:
HTML Form:
<form class="transactieoverzicht" ...
-1
votes
1answer
56 views
PHP mail form not working unless I use CAPTCHA [closed]
I am trying to get this form to send to my email address.
Here is the PHP I am using (it is for the form located on http://protoolstutorial.org/cottageinn/). I need to know why this isn't going ...
0
votes
2answers
162 views
AJAX text input value from php function
If I got something like
<form name="myform" method="POST" action="">
<input type="text" name="mail">
<input type="text" name="firstname">
<input type="text" name="lastname">
...
1
vote
2answers
1k views
Laravel 4 Form::open set action
I'm currently trying out Laravel 4 and I have created a resource controller. In the 'edit' function I'm building a form, which should post to the 'update' function.
To create the form open tag I use ...
2
votes
1answer
368 views
JavaScript form submission doesn't send value of input type=submit
I'm using jQuery to, in some cases, automatically submit a form. Here's my code:
$("form [data-autosubmit]").closest("form").submit();
It works, however it doesn't send the name and value of the ...
0
votes
1answer
73 views
How to generate a view with checkboxes from an array
We have an array $options with a flexible number of values. This Values we get from an DB.
How can we generate the view that this View look like
options['value-1'] checkbox_1
options['value_n'] ...
0
votes
2answers
43 views
How to submit additional variables alongside form submission?
I have an HTML form that works properly and stores all variables ('firstname', 'lastname', etc.) in the GET array.
At the time of form submission, I need to pass an additional variable in the GET ...
0
votes
0answers
108 views
Fill HTML form with PHP array using AJAX
I'm looking for a simple way to do this.
Consider this PHP array of my favorite fruits, in descending order of like:
$fruits = array('Banana', 'Orange', 'Rasberry');
Consider this HTML form:
...
-1
votes
2answers
63 views
Javascript + php form
I'm trying to make a contact form on my site.
Here's the code:
<form id="form" method="post" action="send.php">
<fieldset>
<label><input ...
0
votes
1answer
30 views
What is the simplest way to connect a form & list website to a DB?
I am looking for a DB technology, that makes a connection between my form fields to the DB and handles the inserts itself. Plus I'd like to have a list on another page consisting of all the rows in ...
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'], ...
0
votes
0answers
122 views
two drop down selections html in php. Different style
Hi all,
I have two form dropdown selectors in an PHP file. They both collect their data from a mysql query. When a selection is made in the first dropdown then the second one appears. They have ...
-1
votes
1answer
74 views
How to pass valus selected from HTML Form?
i have a php file which contains two form. Form1(Intermediate) have one text box and three dropdown list as filters. once i hit submit button in Form 1, the values gets POST'ed to another php file ...
0
votes
2answers
120 views
display error message if ID not found
I have one simple html form where the fields can be auto populated by entering ID. its working fine. but, if ID not found in database, it can only return null to the form fields. i was trying to ...
0
votes
3answers
479 views
Populating a HTML form drop down menu with a PHP array
I am trying to populate an HTML form's drop down list with the contents of the current directory. I attempted to use PHP's scandir() function to output these files as an array and then feed them into ...
1
vote
3answers
148 views
html forms generator using php
I want to know :
What is the standard way to generate html form for websites ?
Is there any open source library that fulfills all the needs of html forms ?
Is this good practice ?
Some expected ...
-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
0answers
111 views
Custom jQuery AJAX reCaptcha Doesn't Validate Correct Entry
I have a sign up / registration page html form that includes a custom reCaptcha and is submitted via jQuery AJAX. The correct data is entered into the field, but the is_valid function still returns ...
1
vote
2answers
79 views
Storing Form element ID in variable?
I have an HTML form that contains the following code:
<input id="image_22" name="images[]" type="file" />
<input id="image_8" name="images[]" type="file" />
I'd like to be able to ...
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 ...
1
vote
0answers
25 views
email id is not working from php to asp age
i am trying to send a emailid from php page to asp page...but its does not receive
by my server. i am using form get method..but if i add @ in my mail id..then its show error..other wise its ...
0
votes
1answer
122 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 ...
0
votes
0answers
106 views
Bad gateway error when uploading too large file in html form
I have an html/php form with a file upload field. After uploading it is supposed to be handled by php and mysql, but it never gets that far in the process.
For a file of size 300 kB it works as ...
2
votes
3answers
108 views
Form not picking up first name
I am having trouble figuring our exactly why my php code won't pick up the first name from my form, I hope you guys can help.
Everything else is emailed through fine, just the first name field which ...
-1
votes
1answer
275 views
Load dynamically generated form fields using JQuery
I am using PHP to dynamically generate some fields in a form (here is jsFiddle with full code http://jsfiddle.net/KBYC5/1/).
<?php
$contacts= array('CONTRACT MANAGER', 'MEDICAL ...
0
votes
2answers
184 views
populate form from json php
For this demo I am getting inputs from a form, putting them in a json object and sending via ajax to a server. How can i repopulate a form with the data on the server? I can get it to print in the ...
0
votes
2answers
586 views
How can I put my form inside another form and use one submit button?
<form action="<?php $self ?>" method="post">
<h2>LundaBlogg</h2>
<div class="fname"><label ...
-3
votes
4answers
230 views
PHP header location not working as expected [closed]
I am using a PHP script to email the contents of a form. I want the script to redirect to a different html page after the email has been sent, however it doen't seem to work. Here is what I have:
...
4
votes
2answers
652 views
Internal Server Error when submitting html / PHP form [closed]
I am coding a basic webpage and one of the requirements is an html form that submits input via a php file.
I have coded the following in the html file:
<form method="post" action="formsubmit.php" ...
3
votes
3answers
50 views
Check wheter submitting value is in array?
I have recently read an article that said, that you should never trust user in the sending data.
So let's say that I have following form inputs:
<label for="input1">Answer 1</label>
...
0
votes
5answers
115 views
Processing array in php
I got this 2 array in a form to be process. However, i only manage to get the output from only one of the array. Sample as below :
<inputs id="location" type="text" name="data[]" value=""/>
...
2
votes
4answers
148 views
PHP error with HTML formring
I am learning PHP from a book called PHP and MySQL web development. I am a newbie to PHP , I am pretty well versed with C and HTML, I find syntax of PHP to be pretty same of C.
Look at the code:
...
0
votes
2answers
909 views
How to add textbox to form using javascript or jquery
I have created a function in javascript to add some "" in a form but when I submit the form I cannot get values of these inputs in $_POST[""] and these added "" does not show in the source code of the ...
-2
votes
1answer
104 views
converting a form from text to textarea
I have a form created to pull PHP values into my database.
I created the form with all type="text" constructions. What follows is the code that used to set up the input of data and confirmed that it ...
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
3answers
89 views
List items keep going to the next line in PHP
I am using a form to submit a list of items that I want to save to a config text file, but these list items should all be on the same line of the text file. Every time PHP breaks apart and puts the ...
3
votes
2answers
72 views
Does a select box with a size attribute work with $_POST?
I have a fairly straightforward use of SQL and PHP to generate a select box of options. I originally had the select box with a size attribute and could not figure out why the $_POST after the form was ...
0
votes
1answer
169 views
PHP File Uploader leading to “Page not Found”
I've put together an HTML Form for a PHP File Uploader but when I use the form and attempt to upload the file I get sent to a "Page not Found" and the file never ends up where it's supposed to on my ...
1
vote
2answers
232 views
Receving notice: array to string conversion when using jquery autocomplete
I am using jquery autocomplete on a form and trying to do a simple echo of what is selected upon submitting a form entry to verify my data is being read correctly. I am receiving the following ...
2
votes
2answers
153 views
Cannot upload mdb file through HTML form
Not sure why it doesn't work entirely for mdb files, it doesn't even return any data.
I have the following HTML form:
if(!isset($_GET['action'])) {
?>
<form action="<?php echo ...



