954,566 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

passing querystrings working partially

hi

i'm hoping to have a file 1.php, which takes in a userid via form input, which sends it to file 2.php which shows you available options depending on your userid, and a file 3.php which alters database values depending on your action, and applies it to values corresponding to the userid.

i'm using ajax to request the pages, so they seem to "stack" on the page for the end user

say 1.php

//ajax call up here with a getdocumentbyid to get our 'key' and put it into our get function as a querystring ?key=key in the call for 2.php

.....
<form>
<input type='text' id='key' />
</form>
<div> and 2.php should appear here </div>


2.php

<? 
$key=$_GET['key'];
echo "<input type='hidden' value='".$key."'id=key>;
?>

//ajax call up here with a getdocumentbyid to get our 'key' and put it into our get function as a querystring ?key=key in the call for 3.php


<div> and 3.php should appear here </div>


3.php

<? 
$key=$_GET['key'];
echo "<input type='hidden' value='".$key."'id=key>;

<-- various sql commands go here, minus the comment tags -->


?>


so in principle should this work? the last time i pasted all of my scripting here i got zero responses, so i'm trying a different approach this time
aqhulcus
Newbie Poster
16 posts since Jul 2010
Reputation Points: 10
Solved Threads: 0
 

oops, that last sentence shouldn't have been inside the code tags

aqhulcus
Newbie Poster
16 posts since Jul 2010
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You