Hi
I have PHP Version 4.3.1
----My question is is it posible to read muildimention array from URL like this: [1][2]=Yes into the Php scrip?
---It doesn't read the $A[1][2] from url
//the @ operator is used to suppress a warning message
//if the variable hasn't been set
if(@$_GET['go'])
{
//echo $go;
echo $_GET['go'];
$A[1][2]="Yes";
echo $A[1][2];
}
if($_GET['A[1][2]']=="Yes"
{
echo $_GET['A[1][2]'];
echo tom;
//echo "Multidimensional arrays are working!";
//} else {
//echo "Multidimensional arrays are not working!";
//}
}
I have PHP Version 4.3.1
----My question is is it posible to read muildimention array from URL like this: [1][2]=Yes into the Php scrip?
---It doesn't read the $A[1][2] from url
//the @ operator is used to suppress a warning message
//if the variable hasn't been set
if(@$_GET['go'])
{
//echo $go;
echo $_GET['go'];
$A[1][2]="Yes";
echo $A[1][2];
}
if($_GET['A[1][2]']=="Yes"
{
echo $_GET['A[1][2]'];
echo tom;
//echo "Multidimensional arrays are working!";
//} else {
//echo "Multidimensional arrays are not working!";
//}
}