Tagged Questions
0
votes
0answers
62 views
POST from inside Form
how can I put value of text into the selector inside the form? I need to post text with name=sum into <option value="<?php echo $met->request; ?>"<?php if (isset($method) && ...
0
votes
1answer
17 views
Jquery file picker from server
I'm making a form in php. I want the visitor to either upload an image (that part is done) or select one from the uploaded files. Is there any cool jQuery/php script that will solve this?
I'm ...
1
vote
0answers
20 views
Zend Framework 2 dynamically build form rows and columns
I've got an idea in my head, but I'm looking for the best practice to execute it with the use of Zend Framework 2. Aswell I'm using Doctrine for the models/entities.
The user can choose how many ...
0
votes
0answers
13 views
Drupal Custom HTML Search Form
I would like to display a custom search form in my Drupal site.
The search form has just a textbox and a submit button beside it, no need of any hidden fields.
I tried with a simple html form in my ...
1
vote
1answer
25 views
Why can't I echo a simple Zend form?
I've set up a simple form in my controller:
$form = new Zend_Form;
$form->addElement(new Zend_Form_Element_Text('name'));
$this->view->form = $form;
However when I go to echo it in my ...
-6
votes
0answers
20 views
after clickin in input next to it appear image [closed]
I am new in php so I'm hopping you can help me. I'm doing form on the web. I want to make something like when someone will click into input next to that input will appear pic. Different pic for ...
0
votes
3answers
34 views
Unable to fetch data from textfield using $_POST
I have been not able to fetch data from the textfield 'current_reading'. What can be the issue? every other text and $_POST method are working fine
index page
...
0
votes
1answer
24 views
submit button that will submit the form and send a email?
I have a form that has 2 buttons on it. 1 will send a email using a .php script,and another will submit the form to a .php database. Both of these work great by themselves, but I would like to ...
-1
votes
2answers
51 views
PHP Redirect Not Working When Using Form Action to Submit to PHP Page
So I am using this form to submit to PHP file. PHP file has a redirect header that WORKS when I call the php file directly in browser, but when it is accessed via the action attribute in the form, it ...
0
votes
1answer
38 views
Newsletter form sending email to client, how I can prevent clients email from replying
I have this client that I set up a newsletter signup form that gets sent to their personal email and from their they add it to their system manually, that's just how they been doing it for years. ...
0
votes
0answers
28 views
Submitting form with field on hidden page
The issue I have has been discuss on the DataTable forum but the solution does not work in my hands (http://datatables.net/forums/discussion/185/submitting-forms-with-fields-on-hidden-pages/p1).
...
2
votes
1answer
24 views
How to distinguish accents in sfValidatorDoctrineUnique?
I have a field domain_name in my form which must be unique.
So I have a unique validator like this :
$this->validatorSchema->setPostValidator(
new sfValidatorDoctrineUnique(
...
0
votes
1answer
24 views
$form->bind change my $entity values
I have a problem with my bind method, i don't think it's a normal behavior.
My $entity variable loose the property set earlier after the bind method of the form.
$entity = ...
0
votes
1answer
34 views
How to add a logo path to my company table in Codeigniter?
I have an form for adding companies to my database. I've added a field called Logo. I want to use this field so the user can upload an Logo for their company. I am using the Codeigniter upload class ...
1
vote
1answer
32 views
PHP file - Populating a dynamic <select> tag with values from a database issues
Okay my problem is i have a form which contains a select tag which needs to be dynamically populated from a Database, the values populated are determined by the postcode/zipcode a user enters WITHOUT ...
-2
votes
7answers
45 views
PHP forms clearing after sumbit
I want to be able to clear the fields after and when someone sends a form to the server mail. But instead the input remains. even after refresh.
0
votes
0answers
18 views
Obtain form value from Drupal 6 module form while loop
inside form hook:
$count = 1;
while($slice = db_fetch_array($fruit)){
$section = $slice['section'];
$form[$section][$count] = array(
'#type' => $slice['type'],
...
0
votes
2answers
34 views
Form header:location sequence order
Hi I'm trying to redirect to the next page after data is sumbmitted to mysql. I have so far
<?php
$name = "";
$email = "";
$msg_to_user = "";
if ($_POST['name'] != "") {
include_once ...
-1
votes
3answers
70 views
AJax won't submit into PHP form [closed]
I am learning PHP MySQL & AJAX at the moment. I would like to create a simple email subscription form, but not working yet. Here are steps that I want to do.
1. The validation is done using ...
1
vote
2answers
20 views
Generate form based on form selection
I have a dropdown selection box to generate another select box based on the selection of the first box. I have put an example below.
<form action="" method="type">
<select ...
0
votes
3answers
26 views
php form submission not working
I have multiple pages that I have made using this exact same method, but for some reason, no matter what I've tried, I can't get certain fields to transfer into the email fields. I get absolutely no ...
0
votes
5answers
43 views
Remember form checkbox values
I want a form to remember the user's input whenever an error has occurred.
I got this to work using for the text input using:
echo "<input id=\"quote_square\" type=\"text\" name=\"square\" ...
-1
votes
4answers
58 views
Dynamic Data Display in form with PHP/MySQL
Ok, in order to ask the question properly, I need to give a brief of what I am trying to achieve. So please bear with me.
I have a form that shows a drop down menu which fetches data from MySQL ...
0
votes
1answer
54 views
deleting row in a table with delete button in php
I have some data coming from database and I have a delete button in last column. I want to delete the row on which delete button is clicked. But whenever I click delete button only last row is deleted ...
0
votes
1answer
27 views
php form retaining values on back button
I have a small form which retains the form fields when the form is submitted
<input name="name" type="text" placeholder="Your Name" value="<?php print $_POST['name']; ?>" />
The ...
-1
votes
1answer
39 views
PHP Simple Contact Form Not Working Not Sure WHY
Cant seem to see why this contact form is not working any pointers would be great... wanna send the form via ajax and serialise the data to be sent across.. just doesnt seem to be working though..hope ...
0
votes
1answer
49 views
PHP/HTML Form data multipage info transferring, image info
I've created a photo competition where when users see themselves in a photo they click the (I'm in this photo) callout.
This pops up a form for them to fill in. I've had no problems collecting the ...
0
votes
0answers
15 views
Hide/show form for a particular user
I wan't to show a particular form to the admin user, but I wan't to hide the form for other users. I have tried evrything but it doesn't work.
Code:
<?php if($user_profile['id']=='562004018'){ ...
1
vote
2answers
50 views
Is there any way to retrieve form data sent to the server that didn't get stored in the database?
I have a problem with an online study I'm conducting, which is structured as a multi-page form. A processing file sends the data from each page to the database and assigns a unique ID based on user IP ...
0
votes
3answers
50 views
How to change html controls with php as the user provides input?
Pretty new to PHP and I'm wondering if there's a way to dynamically modify which inputs are available on an HTML form using PHP without the form data needing to be submitted. I'm making a site with a ...
-3
votes
2answers
56 views
Submit PHP Variables to Another Domain [closed]
I'm trying to submit a URL from my website to another website (we'll call it domain b) with PHP variables included in the URL.
When I hit the submit button on my PHP form I need it to create a URL in ...
0
votes
4answers
66 views
PHP - checkbox form wont return itself as clicked
I have a variable called present, I also have a checkbox, I need to make it so that if the checkbox is checked, then someone submits the form, the $present variable will change to a value of 1. Right ...
-3
votes
2answers
43 views
PHP Session Variable Confusion [closed]
I have a simple html form where I use sessions to see how many times the form has been submitted by a user. The form looks like this:
<form method="POST" action="script.php" name="trivia">
...
0
votes
0answers
38 views
MySQL SELECT into Fieldset .. each Row = Another Fieldset
Have a user submitting a form
http://bootply.com/61703
Posting the entries to a single MySQL table on a button submit
Where each input = a column of one row..
And would like to load another page ...
0
votes
0answers
30 views
CAPTCHA with php file just returning blank page
First off, I'm very new to php and I'm certain the solution to my problem is that I'm simply overlooking an obvious thing because of my lack of experience.
I have a simple HTML form with a CAPCHA ...
-4
votes
0answers
24 views
multiple and simple html forms for a website product catalog? [closed]
i searched some topics in this site for an answer, i don't think i got it right, so i apologize if this question has been posted before.
a client wants a website with a products catalog, but he ...
0
votes
3answers
48 views
Database Error. SQL query is not being executed [closed]
I have a form that takes two values as input and parses them using post method to the next file where I have this piece of code. This should save the two values in the MySQL database. But strangely it ...
0
votes
2answers
19 views
I want the form action to be decided based on whether a check box has been selected or not using php
If the check box below is selected I want the form to be processed by teacherprocess.php and if the checkbox is not selected I want the form to be processed by process.php. I'd rather this be done ...
0
votes
3answers
28 views
form is sending variables by get method
i got a form.
<form id="site-contact-form">
<div>
<div class="wrapper"><span>Ձեր անունը:</span>
...
0
votes
1answer
15 views
how to auto fill and submit html form with curl
I want to auto fill an html form and submit the form and display the result. I used below code got from here.
<?php
//create array of data to be posted
$post_data['email'] = 'myemail';
...
1
vote
1answer
40 views
How to handle user generated form with multiple levels of tabs and modules in PHP?
So I have this interface for users to build their own display. It allows them to add jQuery Tabs 1st and 2nd level. And on the 2nd level, they can add in modules like text box and image box.
Here ...
-3
votes
2answers
21 views
PHP Auto_inc form [closed]
I have a form with an auto_inc field. The form on submit creates in the table the tuple - with the auto_inc field. What I then need to do is pull the auto_inc field back into the form for processing ...
0
votes
1answer
40 views
form onchange AJAX function for PHP database query
I am quite new to AJAX and would appreciate any help. I have been trying to use AJAX onchange of first drop down menu to call a function for PHP to query database and populate matching results to ...
-1
votes
3answers
33 views
php does not loop through mysql results [closed]
The form I have created does not receive entries.
Here is index.html:
<html>
<body>
<iframe name = "main_frame" src = "http://stelucir.com/entry_ac.php" style = "position:absolute; ...
0
votes
2answers
29 views
Updating existing event in calendar with post variables
I'm stuck with a form that is supposed to be able to update the information of an existing event in a calendar. When transferring data via the form from my event.php page to my event_updated.php page ...
1
vote
2answers
45 views
Multiple the same forms and POST method?
I have multiple instances of the same form (name / email / message fields) on one page. They all share one class ('.contact-form') and different (dynamically generated IDs).
I validate them using ...
-1
votes
4answers
108 views
php oo code to insert form data into mysql database [closed]
I'm having a problem getting the correct code to insert form data into a mysql db. I am using some OO code I purchased via codecanyon, but they do not support "customizing" the code, which I ...
0
votes
4answers
64 views
Submitting two form using javascript but failed
i have been trying to Submit two form using javascript and failed. i have searched stackoverflow but none of the javascript works ...
also tried this Submit two forms with one button
here is my ...
1
vote
5answers
64 views
Form submit with AJAX passing form data to PHP without page refresh
Can anyone tell me why this bit of code isn't working?
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
$(function ...
0
votes
1answer
14 views
cURL code for registration form to web app not working showing top of page
I have created a cURL php file & included it into my index.php file. Part of the code is displaying at the top of the page. I'm not the best PHP coder, but I believe it is correctly coded. Here is ...


