<?php $db_name = "users"; // this will act as an index $db[$db_name] = "some value"; // the index "user" which is the value of the variable "$db_name" holds the value "some value" in the "$db" variable echo $db_name . ' | ' . $db[$db_name]; // prints: users | some value
You have javascript disabled. You will not be able to edit any code.