Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
95 views

Change url encode entities into html characters?

I used the jquery function serialize() for a form, made an ajax call, and use php to do the form processing. I have a textarea in that form where users type uses spaces and line breaks. I can access ...
2
votes
2answers
82 views

php getting values of form query string

i am trying to post a form to php that contains multiple identical fields e.g. there can be multiple body_styles and multiple make and model when i serialize the form i get the following output ...
2
votes
2answers
93 views

PHP - Escaping em dashes

I am $_POST'ing the following headline from a form: Google’s New Partner Android Update Initiative: Very Promising — Maybe; We’ll See And on the handler page, if the first thing I do is echo ...
2
votes
1answer
40 views

Strange response from server

When I copy and past formatted text from MS Word to My WySwung editor. On submitting the form server gives the following response. Forbidden You don't have permission to access ...
2
votes
2answers
276 views

Does Chrome handle empty form fields different to other browsers?

According to a PHP script of mine, Google Chrome is sending an empty (e.g. no value="") input field with a form post. This is reflected in $_POST superglobal in PHP. However, other browsers are not ...
1
vote
2answers
53 views

php form not writing form data into mysql database

I have to code below - updated php code if(empty($_POST['formEmail'])) { $errorMessage .= "<li>You forgot to enter your email</li>"; } $varEmail = ...
1
vote
2answers
64 views

how to process a complex php array submitted by a form?

i have this array submitted using an extjs form: $submittedFormaddress = array('city' => array('london', 'boston', 'paris'), 'country' => array('UK', 'USA', 'FRANCE'), 'zip' => ...
1
vote
3answers
144 views

passing a variable form id from php to javascript

I'm trying to pass a dynamically created id from a form to JavaScript. <script type="text/javascript"> $(function() { $(".button-call").click(function() { var fld = "<?= ...
1
vote
1answer
309 views

Textarea box not showing correctly in Firefox 3.6

I am using bitrepository's Ajax PHP form for my site and am styling it using their CSS stylesheet. Please go to http://diginnovations.com/dig-v4 to view the site. Everything displays correctly in all ...
1
vote
3answers
316 views

Why my PHP include function not working correctly?

I have this PHP code -- <?php include('res/scripts/php/content_type/form_contents/birth_date_form.php?type=register&query=birth_month'); ?> As you can see I'm including ?type and ...
1
vote
2answers
159 views

looping through variable post vars and adding them to the database

I have been given the task of devising a custom forms manager that has a mysql backend. The problem I have now encountered after setting up all the front end, is how to process a form that is ...
1
vote
6answers
4k views

How to access the form's 'name' variable from PHP

I'm trying to create a BMI calculator. This should allow people to use either metric or imperial measurements. I realise that I could use hidden tags to solve my problem, but this has bugged me ...
0
votes
3answers
27 views

PHP form sends email WITH field titles, WITHOUT collected Data

I Have been trying to get a Php script working for the better part of a week :-/. I've kept it super simple, and I still cannot seem to figure this one out... strangely... It functions well enough ...
0
votes
1answer
23 views

How to use PHP FORM with Facebook PHP SDK?

I want to make a Facebook APP, that prints some questions (answers in radio buttons) and than after submisson it gives the result. The permission request and user login works... but i can't figure out ...
0
votes
4answers
59 views

Passing dynamically created form fields to PHP

I am trying to pass dynamically created form fields to a php script, and it's causing me a huge headache. I've done this in the past many times, and I can't figure out what i'm doing wrong here. ...
0
votes
1answer
9 views

PHP Form - How to Hide Content Form Options That Arent Filled In

I am currently making a simple PHP contact form for a company I work for. It includes some checkboxes, and some text areas, this is the php code. <?php function getPost($name){ return ( ...
0
votes
1answer
17 views

Can one save a form button's value in $_POST data without it also triggering form submit onClick

I've built a simple time picker within a form and decided to use a button which toggles between "am" and "pm" onClick. My problem is that if I use <input type="button" value="AM" ...
0
votes
1answer
29 views

Restrict the values being passed automatically on page refresh?

How do I restrict the values being passed when the page is refreshed in PHP? I insert some values into a MySQL DB for the first time. When I refresh the page, it automatically executes the query and ...
0
votes
4answers
61 views

IF Statements: What's more efficient? Many small ones, or a couple large ones?

I have form for my recipe app that inserts ingredients into a db. If nothing has been submitted yet, nutritional values display '0'. Otherwise they update to the post values. My structure for the ...
0
votes
1answer
123 views

php form onsubmit event loading new page with value of 0

I am totally new to all things php but I have managed to piece meal together the below form. But for some reason that I don't understand, everytime I hit the submit button it goes to a new page with a ...
0
votes
1answer
19 views

How to protect processing files

So I've a php form processing file; say a file name process.php with the codes as <?php $value = $_POST['string']; //Assume string is safe for database insertion $result = ...
0
votes
2answers
60 views

How to create a form with html and php that collects a date

I have a form that I want the user to plug in their birthday. I have three items. One for the month, one for the day, and one for the year. I am using php to create the form. My problem is that if ...
0
votes
0answers
44 views

Upload 6 pdf in single PHP form

if i want to upload 6 pdf on server using php. each pdf is approx 8-10 mb. My PHP form to upload pdf is like this I have also increase my server max-upload-size and max-post-size upto 200 MB and ...
0
votes
3answers
496 views

How to input time from <select> into mysql and have it output am/pm?

Hey guys so, im doing this form with a input that will contain the time and i want to make it so that when users choose the time (for example 8:30 AM), it will be stored in mysql, and will be output ...
0
votes
2answers
22 views

Preserve link in php form

I've created a form that sends two email: 1. To me 2. A confirmation email to the user with a link to some other information <?php $to ='email@email.com'; $subject ="This is My Subject"; ...
0
votes
3answers
496 views

Radio Buttons, multidimensional arrays and PHP

I have created a form that allows someone to create a quiz, all of the questions and the answers are stored in a database. You can see a simplified version of the form here: ...
0
votes
3answers
424 views

Is GET method is faster than POST? [closed]

Possible Duplicate: Why GET method is faster than POST? I use both methods for transfering data but not decide which is faster and recommended.
0
votes
7answers
385 views

Using PHP script to fill in XML

we are all familiar with "embedding" PHP scripts in HTML pages to do tasks like displaying form results, but how can that be done in a way that displays XML? For example, if I wrote: <?xml ...
-1
votes
2answers
46 views

Most efficient way to process mysql query, only “on submit”?

i set up a php form to insert data into my db, and noticed the query would run by default every time the page was refreshed. figured i could just move the query into it's own file, and then call it ...
-4
votes
4answers
768 views

Form not working with Firefox and Google Chrome! [closed]

I have a problem with my form! It works fine in Opera and IE! Here is my code of the form---- <form id="mailit_sign_in" method="POST" action="mailit_res/scripts/php/settings_exec.php"> ...