Skip to content
Advertisement

How to grab url path to file in php

For sending a link to a email (confirming subscription). i need the path to the file subscribe.php. On my webserver, the file subscribe.php is in the webroot. External access will be: http://newsletter.mydomain.com/subscribe.php

This is the link in subscribe.php which i send to the user by email:

JavaScript

At this moment i use this:

JavaScript

How can i grab the path more generally? i tried:

JavaScript

but that produces something like /home/vhosts/mydomain.com/subdomains/newsletter/httpdocs/

Advertisement

Answer

In file subscribe.php put var below:

JavaScript

When you echo $subscribe_path it will output: http://newsletter.mydomain.com/subscribe.php

Lets say you have subscribe.php in a subfolder, named subfolder, it will output:

http://newsletter.mydomain.com/subfolder/subscribe.php

The link in the email:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement