Sending Variable To Php ?

Jan 10, 2005

I'm using a js menu like this:

slideMenu.makeMenu('top','OKP')
slideMenu.makeMenu('sub','Level A','../OKP/KlassementOKP.php?level=A','mainFrame')
slideMenu.makeMenu('sub','Level B','../OKP/KlassementOKP.php?level=B','mainFrame')

As you can see I send the variable level=A to php on next page. What I would like is send another variable for the TOP item: OKP How should I do that ?

View 2 Replies


ADVERTISEMENT

Sending A Variable To Another Page

May 17, 2004

I have a page with a form that a user completed. When they hit submit this calls some javascript. This javascript stores some XML in a variable and inserts the values from the form into the correct parts of the XML.

What I need to do is submit this XML or variable to another page. in effect, the use ris submitting the form to generate some XML then i want to send this XML to another page.

here is the code I have so far:

PHP Code:

<html>
<head>
<script>
function thename(){
var username = form1.username.value;
var password = form1.password.value;
var phone = form1.phone.value;

theXML = "<?xml version="1.0"?>
<novo-xml>
<register>
<client-id>test</client-id>
<password>" + username + "</password>

<user-id>" + password + "</user-id>
<phone-num>" + phone + "</phone-num>
<app-id>test</app-id>
<channel>I</channel>
<user-type>upgrade</user-type>
</register>
</novo-xml>";

//I was using this alert to display the XML
//alert(theXML);

}
</script>
</head>
<body>
<form name="form1" onsubmit="thename();">
username <input name="username"><p>
password <input name="password"><p>
phone <input name="phone"><p>
<input type="submit" name="submit">
</form>
</body>
</html>

View 9 Replies View Related

Sending Dynamic Created Variable In Ext Js

Mar 2, 2009

I am using ext js library to built ajax base site.I need to build dynamci variable and then send that variable with same name in paramter to php i have following function where first i check the array length and then loop untill the array lenght come to end and within that i get the value from html.now i want to send dynamic variables as parameter but i can do this

[Code]...

View 1 Replies View Related

Sending Variable To Page From IFrame?

Jul 24, 2011

I'm trying to make a cross domain iframe and want the iframe to dynamic resize the height. I have read that this is not possible, but if I own both domains I thought that I in my cross domian could make an variable which tells the height of the page and then send it via the iFrame to my page. My crossdomain page has a javasacript like this:

Code JavaScript:
var pageHeight = document.getElementById("container").clientHeight;

And my page would get the page like this:

Code HTML4Strict:
<iframe src="mypage.com" width="100%" height="The height from my crossdomain" frameborder="0" scrolling="no">

View 1 Replies View Related

Sending A Variable To A Js Function - Not Working

Nov 18, 2010

I've been fighting this one for a few months now, and it is causing me to have to create multiple functions that basically do the same thing. I am using the three functions below to replace text between two div tags on a page, based on a link that is clicked:

<td><a href="javascript:void(0)" onclick="htmlData('ajax/loginContent.php', 'view=1','data=2','displayField=txtResult')">Active Jobs</a></td>
";

Then further down the page:

<div id="txtResult">replace this content</div>

For some reason, I CANNOT send the div id name as a js variable. When I do it errors out. BUT if I replace displayField in the js functions below with "txtResult" it works fine.

function GetXmlHttpObject(handler) {
var objXMLHttp=null
if (window.XMLHttpRequest)
{

[Code].....

View 6 Replies View Related

JQuery :: Sending The JS Variable Thought The Ajax?

Feb 7, 2011

Im trying to send JS variable thought the jQuery Ajax,The problem is that the php page recive only null ....

My code below:

Code:

$(document).ready(function(){
$('#start').click(function(){
$('#text').html($('#file').val());
$('#response').css('display','block');

[code]....

View 3 Replies View Related

Sending Jscript Client Side Variable To Asp File

Sep 6, 2005

I have an html page, with jscript inside. some variables, some of them
multidimensional arrays. i need to send this information, which can be
changed by the user, to an asp file. the only way i could think of, is
putting it inside hidden box and sending the form. is there any more
elegant way?

View 6 Replies View Related

Form Sending Twice

Jul 23, 2005

I have a form that calls a perl script. A few javascript routines in
the form do a few things prior to submitting. For some reason,
however, the perl script is being called twice (the perl script sends
out an email, and submitting the form once results in two identical
emails.)

Here are excerpts from the script that I believe to be relevant (I can
post more if this isn't enough, but it's long and I'm trying to keep
it brief.) Can anyone tell me what I'm doing wrong? I've read about
how you need to return true after calling the javascript via a button
click, but I've done this kind of thing in other places and it's
worked fine. I've also tried inserting a return statement here in the
function and it doesn't seem to make a difference. Strange. (BTW, I
changed the domain name in the URL out of courtesy to my client, just
FYI.) Code:

View 2 Replies View Related

Sending Email

Mar 27, 2006

How i can send e-mail using JavaScript?

View 11 Replies View Related

Sending Option Value In Php?

Feb 19, 2010

I am using triple ajax dropdwon in my php file.In my form i have species_scientifc_name & on select I am sending its id to a php file for retriving data for second dependent dropdown box, Here I need to get this id in form action file.

View 1 Replies View Related

Ajax :: Sending More Than The Value

Nov 8, 2009

I am an avid php developer and i am starting to get into ajax so i can keep file sizes and code down to a minimum.

I am looking in the w3schools ajax examples but i am a little lost at how to send through a variable to the page i am using to process.

What i would like to do is send through an id that is being recalled from the database to tell it what to save over.

ajax:

View 4 Replies View Related

POP Up Closing And Sending

Feb 10, 2005

i have a some code
<form><td colspan=&#392;'><input type='button' onClick=javascript:window.open("calendar.php","name","attributes") name='button' value='Book' /></td></form>

(it is echoed in php)

the thing is when a link is clicked on the pop up i want it sent back to the original page and the pop up closed..

View 2 Replies View Related

Sending An Array From Php To Javascript

Mar 29, 2006

i have made an application in php so that people can make, on the fly, a
form. when they submit the form there is a javascript formvalidation.

because we do not know how many fields there are in the form (it is made on
the fly) i collect all the form fieldnames in an php array and sent it to
the javascript function: Code:

View 5 Replies View Related

Sending Params Through POST

Sep 20, 2006

Is there anyway I can link a piece of text through a URL, while passing
parameters to it, but through POST (so that the clients can't see what
params im passing)? I want to do this without using forms, like:

<a href='view.php?questionID=9'>Click to view</a>

Except it would be posted. Is this possible?

View 1 Replies View Related

Sending Mail Using Javascript

Jul 20, 2005

I'm would like my app to send a preformatted email(with subject and
body) everytime a user pushed a button, like : onclick "
mailto:this@that.com" , without the user seeing anything, i.e. not
being able to edit the message.

Using php, this is very simple; mail("this@example.com", "Subject",
"Line 1
Line 2
Line 3");

is there a way to do this the same, easy way using javascript?

View 4 Replies View Related

Sending Message On Load

Jul 20, 2005

I have a need for a page to pop up a user/password dialogue
when it loads and for the user/password that they enter to be sent to
be logged somewhere on the server. The underlying page then loads as
normal. Does anyone have an idea about how I might do this?

View 3 Replies View Related

JQuery :: Getting The Text From A Li And Sending It To Another Li?

Apr 9, 2011

I have this case:

1) There are 2 tipes of li: li.chosen that contains a single string. This string will be replaced frequently.

2) Each li.pick when clicked must send its text to li.chosen, but first the string of li.chosen must be erased. In short words, I want this list to act as a selector.

[Code]...

View 2 Replies View Related

How To Make Sending That Var Work

Jun 5, 2009

function ajaxFunction4(){
document.getElementById('ajaxDiv4').innerHTML='uploading...'
var ajaxRequest; // The variable that makes Ajax possible!

[code]....

View 2 Replies View Related

Ajax :: Sending An Xml Conetnt ?

Dec 9, 2009

My server has an xml configuration file which I want to receive to my browser. I can do HTTPrequset directly to the file config.xml and get it in the responseXML, but I want to do it im more secure way, so the post request will be to some script ("python" in my case), which will open and read the file.

If my xml file looks like this:

What shoud be the content of the response?

View 4 Replies View Related

Sending An Email By Javascript

Jan 10, 2006

I am using a javascript to format an email, the problem is that when the user clicks the submit button they are presented with the email and they have to click send in the email. Is there anyway to do this without the email being shown to the user?

I am able to do it using a simple mailto: but this prevents me from formatting the body of the email and other functions I need.. Code:

View 5 Replies View Related

Sending A Form By E-mail

Oct 23, 2000

I want to get IE5 to send the contents of an HTML form by e-mail using Outlook. I know that the basic idea is to make the recipients' e-mail address the Action. I can make a blank message open addressed as required but I can't get the user's input to appear in the message body.

View 9 Replies View Related

Sending A Value To Parent Window

Oct 2, 2004

On the main window, you click a link and it pops up another window, where you can do some stuff, and ultimatly you get a variable that has some value to it. Now, when the user clicks "All Done", I want that variable value to be become the value of a hidden input "attachments" back in the main window.

Code:

<script language="javascript">
function sendUploads() {
var newValue = &#392;'
parent.document.addform.attachments.value = newValue;
}
</script>

The main window's form is called "addform" and the hidden input is called "attachments".

View 1 Replies View Related

Sending Parameters To XSL Via Javascript

Feb 13, 2006

I am new to XSL and was wondering how I would send a parameter to my XSL stylesheet?

I currently am using this Cross-Browser XML/XSLT javascript code to perform my transformations. Code:

View 1 Replies View Related

Sending Data To Php W/ AJAX

Nov 16, 2006

I'm having a weird problem, not sure if I'm overlooking something or leaving something out. I'm trying to send values of a form to through AJAX to a php script then return a value. It works fine, except the author field is always blank. I've created a simplified version and it still works weird.

This is the javascript used to get the values and send them, when they come back the alert message shows Name as blank. I've looked in the PHP file to see if I made a mistake but I don't see anything.

function postComment() {
var author = document.getElementById("author").value;
var email = document.getElementById("email").value;
var comment = document.getElementById("comment").value;
var url = "includes/testComment.php";
request.open("POST", url, true);
request.onreadystatechange = showResult;
request.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
request.send("author="+escape(author)+"&email="+escape(email)+"&comment="+escape(comment));}

function showResult() {
if(request.readyState == 4) {
var message = request.responseText;
alert(message);
}
}

HTML Code:
<form>Name:<br />
<input type="text" id="author" name="poster" size="25" /><br />
Email:<br />
<input type="text" id="email" name="email" size="25" /><br />
Comment:<br />
<textarea cols="36" rows="7" id="comment" name="comment"></textarea>&nbsp;
<input type="button" onclick="postComment();" name="submit" value="Comment" /></form>

PHP Code:

$author = trim($_REQUEST['author']);
$email = trim($_REQUEST['email']);
$comment = trim($_REQUEST['comment']);
$response = "Name = ".$author." email = ".$email." comment = ".$comment;
echo $response;

View 21 Replies View Related

How To Delay Sending Email In Php

Jan 18, 2011

how to delay sending email in php

View 1 Replies View Related

Sending Value If Conditions Fulfilled

Apr 25, 2011

I have a javascript which verifies if the submitted data is a number or not, and works like a charm, but... I also want to be able to tell if the number is "0" and then submit other data.

Here is my script:
Code:
// Makes sure variable is a number
function validNum(nmbr){
// forces variable into integer type
nmbr = (nmbr * 1);

// Checks if variable is Not a Number
if(!isNaN(nmbr))
// If a number, return value
return nmbr;
else
// If not a number, return zero
return 11;
}
Now, what I want is to add "0" as not a number and change that to "11" as the last else...

View 9 Replies View Related







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