I need to assign a variable name depending on a query. Here is a small example of what I would like to work?
<?php
$tab = array("one", "two", "three") ;
$find="$tab";
print_r($find);
?>
I would like to call $tab by using a third variable. How can I call this?
Any ideas?