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

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

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.