Difference Between Popup And Regular Page When Processing Data

Jul 1, 2010

I have a form and on submit it goes to the submission page, then writes some data, sends an email and says thank you. I then wanted this to be a pop up window so the user doesn't have to leave the main page, and add an auto close function. The problem is with a popup no variables are passed to it.

The regular code to open a new page was:
Code:
<form name="formRFQ" method="post" onSubmit="return formCheck(this);" action="oring_rfq.php">
This worked perfectly everything submitted fine.

Then I decided to make the window controlled by popup
Code:
<form name="formRFQ" method="post" onSubmit="return formCheck(this);" action="wopen('oring_rfq.php', 'popup', 640, 400); return false;">
Now the page isn't getting any variables.

I wrote an If statement to check if there are any variables in case somebody stumbled on the page without actually submitting any data. So I can tell that no variables are getting sent to the popup..

View 4 Replies


ADVERTISEMENT

JQuery :: Select Element From Another Page For Processing Data?

Jul 25, 2011

i have something questions. how can i select element from another page for processing data. ex : #myname.value from content.php and i will process that value to the process.php.

View 2 Replies View Related

Javascript Popup W/php Form Processing.

Apr 5, 2001

i have a form like this on a page called emailform.htm:

<form method="post" onSubmit=NewWindow()>
<H3>From: <input type="text" name="from"></H3>
<H3>Message: <input type="text" name="body"></H3>
<input type="submit" value="Send the Message">
</form>

when submitted, it calls this function:

function NewWindow(){
window.open('sendmail.php', 'newWin', 'scrollbars=no,
toolbar=no, width=200, height=200');
}

two problems:

1. the form values are not getting passed over to sendmail.php.
2. after the popup window pops up and loads sendmail.php, the original page, emailform.htm, changes to an error page.

so, what do i need to do to get the form values to be passed, and how do i keep the original page either from changing at all, or, if thats not possible, get it to simply reload itself.

View 3 Replies View Related

Accessing And Processing Form Data?

Oct 8, 2010

I feel like I've been server-side programming so long that I completely forget how client-side works. I have a super simple form:

Code:

<form action="page2.html" method="post/get">
First name: <input type="text" name="firstname" /><br />
Last name: <input type="text" name="lastname" />
<input type="submit" value="Submit" />
</form>

Is there a way to use Javascript on "page2.html" to access the contents of firstname and lastname and display them?

View 1 Replies View Related

Processing Forms, When Data Is Within A While PHP Loop?

Nov 30, 2010

I am using MYSQL to store articles. I wanted to present the articles in order by id, then let the user choose one of them and send the id of the article to another php page for processing, using ajax. To do so i have placed a simple form in the articles. like so:

$result = mysql_query("SELECT * FROM articles ORDER BY id DESC")
or die(mysql_error());
while($row = mysql_fetch_array($result)){

{code}....

View 9 Replies View Related

JQuery :: Processing The Radio Button To Show Different Data?

May 10, 2011

I have a problem with processing the radio button to show different data.

[Code]...

View 5 Replies View Related

JQuery :: $.load On Form Pages - Can't Get Query Data In Processing Script

Jun 20, 2010

I have a database site I am currently designing, and would like to use a single page with forms in external html documents to undertake admin tasks (eg. add/remove records etc.)

I have managed to successfully load the form html into the necessary div using the $.load function, however, when I try to process the form, with this code:

$("#add_form").validate({
debug: false,
rules: {
maker: "required",

[Code]....

which asks 'process_form.php' to process the data, it doesn't seem to send the data in the form to the page. to confirm this, and whilst trying to get the system to work, the 'process_form.php' consists of 2 lines,:

echo $_GET['maker'];
echo '123456';

(ie. one line to return a string literal, and one line to return one of the variables which SHOULD be passed by the form)

This results in just the 123456 string being returned.

I have tried several things: loading the script above in the head of the 'parent' html page (ie. which the form is loaded into); - does not properly fire at all;

loading the script 'in-line' in the imported html - this leads to the result given above; running the script in an external script.js file through an onsubmit directive on the form...does not appear to properly fire the script.

View 4 Replies View Related

Creating A Processing Page For Submit Form

Dec 21, 2007

I'm looking to create a processing page for a submit that has a little rotating processing image with a little verbage like "please wait while we process your information" Just so the page looks like it's actually doing something. Code:

View 1 Replies View Related

JQuery :: AjaxSubmit Redirecting To The Processing PHP Script Page And Other Anomolies

Jul 19, 2011

first time up for Ajax Form plugin and AjaxSubmit. Simple test everything worked fine. However as the design has developed some strange behaviour is happening adn I dont really know where to start. The scenario is a pretty simple form validation and then insert or update of a new user record. I should mention that the tests all relate to New User records only (Inserts) no test as yet for existing users.

3 different outcomes. Tested in the PHPEd IDE with embedded IE: inserts a MySQL record correctly but supposed to remain on the page with the original submit. instead the redirect is to the PHP Server side script page - action="ajaxresponders/process_user.php" the echoed output is as it should be. Tested in the PHPEd IDE with embedded Firefox: The insert is processed correctly however the page never completes it shows connecting/waiting for localhost forever.

Tested outside the IDE on local server. With both Firefox and IE the PHP script is processed twice resulting in two seperate inserts of the same data from the form although with different userID (auto increment) and activationKey which is generated in the script prior to the insert!!!

[Code]...

View 2 Replies View Related

Regular Expression :: Extract Only Numbers From An HTML Page

Jul 23, 2005

I'm looking to use Javascript to pull apart a page of HTML I have
already fetched. The page contains a table, within which there are rows
containing...

Either:

0000000 - 0000000<some html>00<some html>0

or:

0000000 - 0000000<some html>00 - 00<some html>0

I'm interested in extracting only the numbers (which may not always be
0!), in each case. I bet this can be done using a regular expression (or
two). Can anyone help?

View 5 Replies View Related

Retrieving Data From A Popup Window.

Dec 1, 2005

Is it possible to pass information back from a popup window?

I am looking to open a popup from our internet site to our web based
mainframe app (HATS). I would like to send some strings from this
popup page back to text fields in the calling page to populate a form.
Does this sound possible?

View 1 Replies View Related

How To Close Popup After Submitting Data

Oct 13, 2009

I open an popup to create something and after I press Submit button I want to close popup immediately. I saw many page do that but can not find their solution.

View 2 Replies View Related

Posting Hidden Form Data To A Popup Window

May 26, 2007

Need some working sample code to post hidden form data from a php page
to a new popup window. 540 x 500 centered. The popup that I'm calling
already is formatted and has a TITLE:web-2007.php so what I need to do
is to write the values from the PHP page to that popup in specific
places.

Some of the hidden values are also like this format;

<input type="hidden" name="handling" value="<?php echo $_POST["sub"];?>">

<input type="hidden" name="email" value="<?php echo $_POST["email"];?>">

Right now,the hidden input fields are on a PHP page, and I'm calling the
popup from the generated PHP page like so:

View 3 Replies View Related

JQuery :: Use Popup Window Plugins With Database Data?

May 22, 2011

Can I Use Popup Window Plugins with Database Data using JQuery?

View 1 Replies View Related

Jquery :: Popup Box For File Upload And Data Entry

Jul 27, 2010

I need a Thickbox or popup mechanism to Upload File and Registration Details .

View 2 Replies View Related

Data String From Parent Window To Popup Not Passed

Jun 23, 2010

Inside of a page, there is a iFrame, which houses WYSIWYG editor.I'm trying to pass data (passedString: html, inline css, text ...) to a popup.When I pass same string to same div with id="idx" located on a page, where iFrame is located, it receives it without problems.Problem appears, when I try to pass string to popup.

View 1 Replies View Related

Popup Question: On Popup Have One Button To Close And Another To Close And Then Redirect To Another Page

Jul 20, 2005

As per the rather long subject, I would like to (well, my boss would like me to...) on a popup have one button to close and another to close but then redirect to another page.

View 4 Replies View Related

JQuery :: Success - Error - Small Data Entry Screen - Post Form Data To A Page And Return A Message

Jul 22, 2011

I am writing a small data entry screen that will post the form data to a page and return a message. But i cannot get the Success or Error functions working properly.

Here's the code where strData is the posted querystring of:

I'm not sure whether it should be in a form and using the onsubmit or click of a button.

View 2 Replies View Related

Javascript Popup Page On Page Load

Sep 8, 2007

I am trying to do a popup window, which will load when the page loads. Using the onLoad in the <Body> tag. However it doesn't seem to be working. Also when the popup loads there will be a form which the user selects an option and the form is sent to a email address with the answer chosen and then the popup closed. Code:

View 7 Replies View Related

Passing Form Input Data From One Page To Another Without Control Of The Receiving Page

Jul 31, 2009

I've been searching for a few hours and haven't been able to find a code snippet to see if this is available. I'm attempting to pass text from my website to another website that has a form setup on it. I'd like to fill in the pertinent data for my users on the page that I load for them. I cannot make any changes to the receiving page as it is run by another company. I've pasted some of the code that is available on the receiving form.

<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['form1'];
if (!theForm) {

[Code]....

View 5 Replies View Related

AJAX :: Update Part Of Page After Insert Data In Same Page

May 21, 2009

I am currently programming Script Adds data to the database but if i want to Shown the data that have been added Requires refresh the page to show the Data that have been added . and I do not want this method.I want to when adding data to show updates as soon as the addition of data.This can be done by Ajax , and An example of this method used Google Gmail.

View 3 Replies View Related

Img Processing With .js And .css

Jul 23, 2005

Here is an img specification

<IMG SRC="https://my/current/location/file.gif" name="Pt2" width="15">

I would like to use a .css specification, to allow me to stop
hard-coding that location in all my files. I can't seem to find the
correct .css incantation for this.

View 10 Replies View Related

Ajax :: Send 3 Data From One Page To Another Page Through .Request

Mar 24, 2009

I am facing some problem with this when i am trying to sent the data in krnlAddComment1.asp page and there is only an insert query exists. after run the query successfully, response.write "...." revert back to me

if ((myname != null) && (comm != null) && (captcha1 == randomnum))

View 1 Replies View Related

When Try To Close Browser In IE On The Main Page - Get An Popup With An Error - An Error Has Occured On The Script On This Page

Apr 14, 2009

I'm having a problem on a particular site I am working on.

The URL is [url]

The problem is that when I try to close the browser in IE on the main page I get an popup with an error which says: "An error has occured on the script on this page"

Do you want to continue running scripts on this page?

"Yes" or "No" (Buttons to Click)

I have to click the 'Yes' button about thirty times before the browser will finally close. Does anyone have any idea what this is?

Here is the source code.

Code:

View 2 Replies View Related

Submit The Form Data To The Popup Window Without A Submit Button

Jul 23, 2005

The following will submit the form data to popup by clicking the submit button. I want it will submit the form automatically to the popup, there is no submit button in this page. Basically this page should not show up.

<script type="text/javascript">
function submitmyform(f) {
f.target = 'foo'
window.open('',f.target,'menubar=no,scrollbars=no, width=800,height=800');
f.submit();
return false;
}
</script>

<form name="myform" action="popup.asp" target="_blank" method="post"
onsubmit="return submitmyform(this);">
<input type="hidden" name="item" value="item"/>
<input type="submit" value="submit to popup"/>
</form>

View 2 Replies View Related

Getting Data Back To Parent Window Field From Popup Window

Apr 7, 2007

My problem is that ..... I have to select Data from Popup Window and get that Data back to my Parent window's textarea field..

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved