Call script from script within phpmyadmin

Is it possible to call a mysql script from a script with phpmyadmin import?

example:

There is a file for creating a table - create_table_a.sql

create table a ( col_a int );

There is a file for calling this ( along with other create table scripts ) - create_all_tables.sql

start create_table_a.sql
start create_table_b.sql
start create_table_c.sql
start create_table_d.sql
start create_table_e.sql
start create_table_f.sql

The example shows how I would do this using Oracle.

Thanks,

Steve