vote up 1 vote down star

I have a method which prints out the order of a set of images...I need to submit this to a new php page.

I have a form which currently prints out the order to the same page.

<form action="mainpage.php" method="post">
<div style="clear:both;padding-bottom:10px">

    <input type="Button" style="width:100px" value="Show order" onclick="saveImageOrder()">

</div>

Saveimageorder() shows the image and it saves the order in a variable called orderString

function saveImageOrder()

    {

    	var orderString = "";

    	var objects = document.getElementsByTagName('DIV');

    	for(var no=0;no<objects.length;no++){

    		if(objects[no].className=='imageBox' || objects[no].className=='imageBoxHighlighted'){

    			if(orderString.length>0)orderString = orderString + ',';

    			orderString = orderString + objects[no].id;

    		}			

    	}



    	document.getElementById('debug').innerHTML = 'This is the new order of the images(IDs) : <br>' + orderString;



    }

Can anyone tell me how to do this?

thanks.

flag

3 Answers

vote up 2 vote down

You can submit the form with (note that this isn't tested):

document.formname.submit();

If you need to change the action (the page to submit to) first:

document.formname.action = 'some_other_url';

If you need to submit the form asynchronously you need to use a XMLHttpRequest or something similar.

link|flag
vote up 1 vote down

with plain POST (no ajax) you need to store the result of your process (image order id retrieval) in an form field:

<input type="hidden" name="imagesorder" value=""/>

in your function, you can set the value to this field after the orderString is populated:

document.getElementsByName('imagesorder')[0].value = orderString;

then submit the form, you can do this by replacing your

<input type="button" .../>

with

<input type="submit" .../>

on the server side you will then get the value in the post collection (I'm not php dev)

$_POST['imagesorder']
link|flag
Note a typo on the last line.. It should be $_POST['imagesorder'] – Rexxars Dec 11 '08 at 13:40
thanks Rexxars, fixed :) – smoothdeveloper Dec 11 '08 at 14:59
vote up 0 vote down

I'm getting an undefined index on the next page..

function saveImageOrder()

{

	var orderString = "";

	var objects = document.getElementsByTagName('DIV');

	for(var no=0;no<objects.length;no++){

		if(objects[no].className=='imageBox' || objects[no].className=='imageBoxHighlighted'){

			if(orderString.length>0)orderString = orderString + ',';

			orderString = orderString + objects[no].id;

		}			

	}

	document.getElementByName('imagesorder').value = orderString;

	document.getElementById('debug').innerHTML = 'This is the new order of the images(IDs) : <br>' + orderString;


}

<form action="mainpage.php" method="post">
<input type="hidden" name="imagesorder" value=""/>

<div style="clear:both;padding-bottom:10px">

    <input type="Submit" style="width:100px" value="Submit" onclick="saveImageOrder()">

</div>

Am I making an obvious mistake?

link|flag
try document.getElementsByName('imagesorder')[0] too much time I don't use plain DOM, I also just fixed my answer – smoothdeveloper Dec 11 '08 at 14:12
That also doesnt work... Undefined index 'imagesorder' – hallcw25 Dec 11 '08 at 14:28
I figured it out... The document.getElementByName('imagesorder').value = orderString; should be document.getElementByName("imagesorder").value = orderString; Thanks to all who helped I now have it working! – hallcw25 Dec 11 '08 at 14:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.