problem:
create a database table.
view the data from the table you created previously.
Solution A:
create table and view the date in one single page (lets say 'pageA.php')
Solution B;
create a separate page for creating the table and another for viewing then just include the page for creating the table to the viewing page.
pageA.php (for creating the database)
pageB.php(for viewing the data. Includes pageA.php)
which solution is best/faster/efficient?
or will the result be the same?
:> thank you.