8 lines
255 B
PHP
8 lines
255 B
PHP
<?php
|
|
echo "<h3>Add New Agent</h3>";
|
|
// Your form to add new agent
|
|
echo "<form method='POST' action='?action=save'>
|
|
<input type='text' name='agent_name' placeholder='Agent Name'>
|
|
<button type='submit'>Save Agent</button>
|
|
</form>";
|
|
?>
|