hi ALL
how to call other page, like in an html they are using <a href>??</a> but how in php? like now on me, i want to call connection.php into index page?
function call
Moderator: General Moderators
- php3ch0
- Forum Contributor
- Posts: 212
- Joined: Sun Nov 13, 2005 7:35 am
- Location: Folkestone, Kent, UK
Re: function call
Code: Select all
include('/url/to/file.php');Re: function call
Yes this is it.. thank you.. php3cho
- php3ch0
- Forum Contributor
- Posts: 212
- Joined: Sun Nov 13, 2005 7:35 am
- Location: Folkestone, Kent, UK
Re: function call
not a problem. you could also try require_once('path/to/file.php'); as well if this suits you better