I have a simple HTML form which has checkboxes next to images. What I want to do is select one or more images press submit and on the next screen show the images which had checkboxes selected.
I can pass the values of the images across to the page via post but how would I declare the id into img name as the above example is hard coded?
every time i try something it doesn't work for me :( god why is this javascript so hard to make it work... anyway, i just followed the guidelines to pass values from one page to another using ? and it simply, like always, DOES NOT work .
I have an error when I POST to a page. Whatever monetary choice of donation that is made, the POST does not work to send the values to the next page and the default value of $20.00 is registered.
After looking at my code for a day I dont see the errorL
Here is the code
Contributions are tax deductible for residents of the United States and Jamaica.
Yes, I want to become a contributor. Please accept my donation as indicated below.
[/code]
Here is the test site. [url]
For this test all menu choices takes to the Donation page.
" $.post(Drupal.settings.newURL.admincharacteristics+ 'display/' + encodeURIComponent(a) "In tha above code, I want to have variable "a" to be an array?
Alright, I'm trying to make these variables pass through as a post, but it's not receiving any posts through the other side. When I use the GET method though, it picks it up.
alright im making a sortable displays in my website but i am trying to figure out how to pass my javascript array to and external php script through POST method so i can update the column, position, hidden, or closed in the database i am using jQuery Sortable Portlets
how can I make ajax pass variables to php, I been trying to use $POST but it�s not working for me, I have this script
Code JavaScript: function get_school_data() { var xmlhttp;[code]....
What I am trying to achieve is to send the value of country to php and have it stored in a variable so I can then select a different table in the database, but when I do it the way I am, it does not work, as it gives me an undefined variable
Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html lang="EN" dir="ltr" xmlns="http://www.w3.org/1999/xhtml"> <head>
[Code]...
In a few words it creates a button which when it is clicked it launches the add_text script. Add text script creates a text element for a form and puts a random value for the textbox. Textbox also takes a name which is of array type name="txt[]". Also form has the post method.
When I press e.g. 4 times the add text field button 4 text boxes are added. But when I click the submit button I get a result of 1 instead of 4 when the print count($txt) is executed. Copy paste the code to see the problem.
I have a javascript that will take whatever was entered on this form and send it to the new URL (without submitting), but for some reason - it doesn't work anymore. i've changed things around, & probably messed soemthing up.
Code:
$('#cb_ht2').click(function() { // Reset incase Data Changed[code].....
I think i may have messed it when when adding that target-"_parent", it needs to pop a new window
Once a page is loaded, is it possible to access the post values?I want to get the data out of the post and use it to create some elements. I prefer to use jquery rather than server side parsing.
I understand that the EXIF data extracted from uploaded images are stored in the WordPress database, but i am not finding the proper way to find them or get them in a post for instance. I was looking around on web but all solutions found didn't work.Do you know an efficient way to get the EXIF data of a picture from post? I don't mind if is a php or jQuery solution as long it does the job.
EDIT: actually i found the reason for my problem. I managed to call the wp_get_attachment_metadata but except the width and height of image, i receive zero for camera, aperture, ISO, focal lenght, shutter speed etc. The call is something like $imgmeta['image_meta']['camera']
EDIT: Found the issue. server extension php_exif wasn't enabled.
I'm running into an interesting problem. I'm constructing a form that will allow a person to enter text into a textarea and then preview it. Currently, the person has to click preview, look at the text and then use the back button, which causes problems with losing changes/the entire block of text. So my next thought was to allow for a UI dialog box to pop up and to submit the form values via a .load call to my PHP script. This works really well, but I notice if I preview and close the window (either with the X or with escape) more than three times, I start getting a blank window.
My code is as follows: <script type="text/javascript"> function preview(){ $('body').append('<div id="preview" title="Preview" style="display:none;"></div>'); $('#preview').dialog({ bgiframe: true, modal: true, resizable: false, height: '600', width: '80%', open:function(){ $('#preview').load('page.inc.php', {Submit:'Preview', highlights: document.getElementById("Highlights").value, }); }, close:function() { $("#preview").dialog("destroy"); $('body').remove('#preview'); }, cancel:function() { $("#preview").dialog("destroy"); $('body').remove('#preview'); } });} </script> The PHP side just echos the text right now, so nothing crazy going on there. I also find that unless I hide the preview div, after the second preview the div starts appearing in the page, as well as in the dialog box, so I'm not sure if that's standard or not.
How can I gather all values from the form (select, input (text, checkbox....), textarea... ) using jquery and send them by post. The number of items is not fixed, I need something that will gather everything that form contains.
A webpage has a number of questions that a user must answer and each question can be answered using a list of checkboxes. Thus each set of checkboxes (each question) will have a seperate name. The webpage is dynamically generated and I dont know how many questions will be on there nor the amount of checkboxes each question will have.
I know how to obtain the checkbox values using a form and a conventional submit button however what I want to do is put a button below each question and use AJAX to submit the answers for each question therefore the whole page will not refresh once each question is submitted.
I assume I will have to create a string that contains the values of the checkboxes joined together with delimiters because it is not possible to POST and actual array? So how do I obtain the values of the checkboxes for each individual question using JavaScript?
I am having trouble finding a code example that uses javascript to get values from a form submitted on a previous page using the "POST" method. I've found some examples on how to parse the query string, but unfrotunately my form on the previous page has WAY too many charcters being submitted to be able to use the "GET" method (there is some upper limit here, I think it may be 255 or some number similar).
By the way this ONLY needs to work in IE, but it is better if it works in all browsers.
I wonder if anybody can give me a hint about what I have to do to get this working: I am creating a drop down box using the script below. The
result is two text fields; now I want to pass those values, which come from the drop down box, to the next page. The next page should then simply look like this:
Month:
Year:
And the values should be the ones from the drop-down box... I have been staring myself blind about how to get this accomplished. Would be more than grateful if somebody could have a look...here is what I got so far: Code:
I would like to have my javascript pass some variables it gets to a php page I have to log the inputs. The inputs are collected in forms but I want the logging to be completely hidden from the user. Any suggestions?
I have a list of images on the left side of the screen. On the right side I have an iframe for the picture and some text to be displayed. I can create individual pages for this, however I would rather create dynamic pages for this. I would love to be able to have a link on the left side that will send an image filename along with some text to the iframe, so I don't have to create so many smaller files. Has anyone done this?
I was wondering if I can pass my php variables through javascript function. Actually i have a simple table of pictures, when clicked in the picture a new popup page comes up, it working fine uptill this stage but now I want to pass a value through it, for instance if user clicks on picture1 then my popup url should be "item_large.php?id=pic1.
My Javascript junction for the popup window: function popup() { window.open("item_large.php","Register","menubar=no,width=500,height=400,toolbar=no"); }
My Html code where I have my pictures: <td height="19" align="center" valign="top" onmouseover="this.bgColor='#CC3300' ; this.style.cursor='pointer'" onmouseout="this.bgColor='#FFFFFF'" <A HREF="javascript:popup()">Picture01</A> </td>