Re: How to run program from php..? [message #179822 is a reply to message #179821] |
Mon, 10 December 2012 12:46 |
Robert Bralic
Messages: 2 Registered: December 2012
Karma:
|
Junior Member |
|
|
"Captain Paralytic" <paul_lautman(at)yahoo(dot)com> wrote in message
news:918e61f4-eaa4-4089-9fa4-deb9468df09d(at)r3g2000vbn(dot)googlegroups(dot)com...
On Dec 10, 7:39 am, "Robert Bralic" <robert.bra...@si.t-com.hr> wrote:
> Hi,
>
> I want to run an external program from
> php like this:
> ?>
> <a href="C:\Program Files\Adobe\Acrobat 6.0\Acrobat"><?php echo
> $row[8]; ?></a>
> <?php
>
> This marks file as link but doesen't run Acrobat..
>
> Thanks in advance, Robert...;)
Oh boy Robert, you have an awful lot to learn. the <a href...> part is
HTML, it is nothing to do with php. HTML is interpreted by your
browser. php runs on the server and so it has no way of opening
acrobat on your client (a PC, tablet, phone, ...).
If you check the documentation for HTML (there is lots around on the
internet), you will never find anything that says that you can put
such a link in there. At best, you could have your client configured
such that, if say a .pdf file is delivered by the browser, it will
launch Acrobat, but that is dependant on the set up of your machine
(and influenced by the headers sent by the server).
Escouse me for souch a stupid question,
I understoded that this what it hapens on client
not a server side, 5 minuts after putting a question...
Thanks, Robert..;)
|
|
|