I would like to make the contents of one variable form another variable, for example:
$name = 'clientes';
$default_$name_list = "Lista de clientes";
I want to make the default variable be $default_clientes_list
, is there any way to do this in PHP?