Php 5.4 or higher
$rd[name]
This results in a warning (or error...).
$rd['name']
You should use quotation marks to access the key values.
The . (point) is used to associate variables with variables or strings.
$stringVar = "hello";
echo $stringVar." world"; // hello world
© 2024 OneMinuteCode. All rights reserved.