how to show table from my database according to the name of my table? So i have some tables which is created everyday and named it according to the date, and i want to show table which is named as today on my web application. I'm using PHP and mysql in building my web application. Thanks so much before...
$table_name = "temp_".date('d')."k".date('m')."k".date('Y')."k".time('h')."k".time('i')."k".time('s');
Replace k
with an underscore (_
).