I have a form, the results of which do a database (mysql) query, to give a list of authors. The user can then select the author to get further information. This uses a link with a get which sends the information to another php script called get_auth.php.
What I want to do is to run this get_auth.php script directly from the first PHP script if there is only one author, without having to bother the user with an unecessary click. How do I do this and pass the required arguments?
Bob