how to find the actual link behind a php id link , For example , i have a link like www.website.php?id=2 , how do find out the actual link
|
feedback
|
|
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, 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. | |||
|
feedback
|
|
I guess there is no link behind it and the page is generated on the fly by a dynamic website. | |||
feedback
|
|
You can view the source of the page by using Ctrl+U, and if you install Firebug for Firefox, you can see all of the URLs the page requests (for images, frames, etc.) on the Net tab. It's not exactly what you were asking, but it may be useful. | |||
|
feedback
|