Po 1 czy jest to bardzo skomplikowane czy nie aż tak bardzo?

podsyłam moj plik VIEW.PHP
<!DOCTYPE HTML PUBLIC> <html> <head> <title>Wysyłka</title> <style> body { background-color: #EAEAAE; } </style> </head> <body> <div align="center"><img src="logo.png" alt="Logo" /></div> </br> <font size="5">Panel Wysyłkowy</font> </br> <form> <input class="MyButton" type="button" value="Dodaj Nowego Klienta" onclick="window.location.href='new.php'" /> </form> <?php /* VIEW.PHP Displays all data from 'wysylkadb' table */ // connect to the database include('connect-db.php'); // get results from database // display data in table echo "<tr> <th>ID</th> <th>Data</th> <th>Zlecenie</th> <th>Klient</th> <th>Miasto</th> <th>Przewoznik</th> <th>Miejsce</th> <th>UWAGI</th> <th>Palety</th> <th>Sztuki</th> <th>Status</th> <th></th> <th></th></tr>"; // loop through results of database query, displaying them in the table // echo out the contents of each row into a table $error = ''; } // close table> ?> </body> </html>
Chciałbym dodac to pole obok przycisku "dodaj nowego klienta"
czy na moim etapie budowy skrytow dam sobie z tym rade?
P.S. jest to moje zadanie na uczelnie natomiast ta wyszukiwarka to tak nadprogramowo.
