Hi Guys,
Whats the syntax for opening a url as below.
else{
????? i just want to open a url
THANKS
include("confirm.html");
}
else {
$message = "<a href="http://www.myurl.com>Link</a>";
Simple Question - How to use php tp open a url
Moderator: General Moderators
-
sailing_mad_bob
- Forum Newbie
- Posts: 2
- Joined: Sun Jul 26, 2009 7:53 am
Re: Simple Question - How to use php tp open a url
To be clear, you want to open another url from within PHP?
If so you will have to use a linux comand like 'curl'.
To use comand line stuff you need to wrap it with the php comand system()
If so you will have to use a linux comand like 'curl'.
To use comand line stuff you need to wrap it with the php comand system()
Re: Simple Question - How to use php tp open a url
That's not opening a url, that's redirecting.