HI
I have the problem that I would like to link from within one php file to another php file and don't want to include this other file.
Ok, what I have so far is the following:
the user enters a new link in a form within my file linklist.php
The form is sent to update_database.php and
there the text is added to the database
and now I would like to display the updated page linklist.php
I know how to include the file:
include("./linklist.php");
but then the URL still remains update_database.php and by reloading the page, the links are added again.
Does anybody know how to really link to another page so that the browser automatically jumps to that page when reaching this line of code?
Many thanks,
Dyk