Martin Solac
Martin Solac

Reputation: 856

Execute link automatically in php

I'd like to execute a link in a automatic way. For example:

I have to pages: Page1.html Page2.php

Page2.php contains a link that has to be clicked to access to the file. What I want to do is that executing Page1.html form, goes to Page2.php and whitout clicking in the link go directly to the link.

Best regards

Upvotes: 0

Views: 1039

Answers (1)

konsolenfreddy
konsolenfreddy

Reputation: 9671

Do a header redirect in Page2.php

header('Location: /path-to-your-file.txt');
exit();

Upvotes: 3

Related Questions