OK, so I have the variable passing through the URL as so:
http://www.domain.com.au/out/MngrViewUsr.php?currUser=4
On the following page, I have the code like so:
<? $query = "SELECT * FROM tblUsers WHERE id = $currUser";
$result = mysql_query($query);
while ($row = mysql_fetch_array($query))
{
$user_login=$row["0"];
$password["1"];
$confirm_pwd["2"];
?>
<?printMLText("user_login");?>
<?printMLText("password");?>
<?printMLText("confirm_pwd");?>
I DO have all the database connecting code included too in a class file, so I haven't missed that out.
But it still isn't happening....... 😕