..im new in PHP and and I want to know how to create html form that sends file(images) to phpmyadmin(database) consider that you have to choose the database first from the dropdown list of database.. then display it's table after choosen it.. please help..
here must be the sql flow.. from html form...
<select>
<option value="DB1">DATABASE 1</option>
<option value="DB2">DATABASE 2</option>
<option value="DB3">DATABASE 3</option>
<option value="DB4" selected>DATABASE 4</option>//selected
</select>
==next it will display after you choose one of database==
<select>
<option value="table_1">table 1</option>
<option value="table_2">table 2</option>
<option value="table_3">table 3</option>
<option value="table_4" selected>table 4</option>// selected
</select>
<submit>
this suppose to be insert to databse 4 table 4..