Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

how to find out actual url link

Writer Matthew Martinez

how to find the actual link behind a php id link , For example , i have a link like , how do find out the actual link

2 Answers

PHP is server-side scripting. When you access a page fed by a script, the web server runs that script and dynamically generates HTML or other client-side code for your browser to render.

The only file being referenced in, say, is the PHP script index.php. The content of the webpage you're viewing could come from any number of things, including a database server, the script itself, or other scripts (or files, which may or may not be public-URI-accessible). The script decides which content to output based on the id=2 argument.

The point of server-side scripting is that you, the user, aren't supposed to know what's going on. So, 9 times out of 10, the PHP link you see is the "actual" link—there's simply no other way to get that content as a public web browser.

The other 1 time out of 10 might be something with shortURLs or redirects, but we'd need more specific information to figure something like that out for you.

I guess there is no link behind it and the page is generated on the fly by a dynamic website.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy