Hello all,
here i m getting parameter string and a concatinated numerical value dynamically
/******$_REQUEST[''Author'.$a'];
pls help the syntax of it.
<html>
<head>
<title>Response</title>
</head>
<body>
Ur favourite author is
<?php
$a = 1;
$Author = $_REQUEST[''Author'.$a'];
echo $Author;
?>
</body>
</html>
how to $_REQUEST[''string'$var'];
Moderator: General Moderators
Re: how to $_REQUEST[''string'$var'];
Quotes issue:
Code: Select all
$Author = $_REQUEST['Author'.$a];There are 10 types of people in this world, those who understand binary and those who don't
Re: how to $_REQUEST[''string'$var'];
Thank you for ur kind replyVladSun wrote:Quotes issue:Code: Select all
$Author = $_REQUEST['Author'.$a];