Hi
I have probably a very simple PHP problem but don't know where to start.
I run a small hosting business and want users to access their web mail via my website.
The problem I have is that each user has their own webmail url i.e: http://www.theirdomain.com/horde.
How can I get a form to take them to their own webmail url ?
Thanks for any help
Weavers
Total novice needs help
Moderator: General Moderators
-
kettle_drum
- DevNet Resident
- Posts: 1150
- Joined: Sun Jul 20, 2003 9:25 pm
- Location: West Yorkshire, England
Code: Select all
$users_site = "http://www.".$_POST['website'];
header("Location: $users_site/horde");