Go to url with value from input type text

They have: 2 posts

Joined: Aug 2007

echo "

<input type=\"text\" id=\"inputnumber\" value=\"\" />
<input type=\"button\" value=\"Go\" onclick=\"javascript:window.location='". $_SERVER['PHP_SELF'] . "?pagenum=document.getElementById('pagenumberinput').value;\" />";
'
When i click on Go button nothing happens.
For example in the input field i typed 2. When i press Go i should go to page localhost/facts/pagination2.php?pagenum=2 but it doesnt happen like that. when i press go nothing happens.
I looked at the output source code. it looks like that :

<input id="pagenumberinput" type="text" /><input type="button" value="Go" onclick="javascript:window.location='/facts/pagination2.php?pagenum=document.getElementById('pagenumberinput').value;" />'

Any ideas how to correct this?

Greg K's picture

He has: 2,145 posts

Joined: Nov 2003

Well the first issue I see is that in your form the ID you give the input (inputnumber) does not match what you are trying to use in the next line (pagenumberinput).

Second, you have the javascript logic INSIDE the quotes for the location (to better demonstrate this, I removed the PHP portion of your code:

What you need is:

-Greg

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.