I am a relative newbie to all this. Is there a way to reduce the following to a single echo?
echo "<form method=post action='$self?page=2'><input type=hidden name=id value=";
echo $_REQUEST["id"];
echo "><input type=hidden name=term value=";
echo $_SESSION['term'];
echo "><input type=hidden name=category value=";
echo $_SESSION['cat'];
echo ">";
Everything I tried causes problems, with the $_SESSION and $_REQUEST either being interpreted as literal, or bad placements of single and double quotes causing errors.
Thank you and sorry if this is considered a