answersLogoWhite

0

How do you get the url in a php website?

Updated: 8/19/2019
User Avatar

Frogyofrog

Lvl 1
12y ago

Best Answer

Copy the URL with the .php, The .php is part of the page.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you get the url in a php website?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Where can you find a video website for kids?

Here is a List: [url]http://askyourpc.com/blog1.php/fun/on-the-web/is-there-a-youtube-for-kids[/url] or go here: www.totlol.com


What is the GET method in PHP?

The GET method in PHP allows you to grab information from the URL to use in your script.For example, say you are on the URL index.php?id=1 you could then in the PHP script grab the id using the GET method to use in your script.


What does php mean at the end of an url?

Websites are servers that present pages as they are requested. Pages, in this context, are merely different kinds of files -- much like images and word documents. The "php" appended at the end of a URL indicates you are requesting a PHP type file, which is composed with the PHP language. PHP is a programming language that stands for "PHP: Hypertext Preprocessor." It is used to develop websites that present dynamic content and allow page-to-page interaction, such as forums and wikis.


What is official website of PHP?

The official website of PHP would be www.php.net.


What is the official website for PHP?

The official website of PHP would be php.net.


Is a url another name for a website?

A URL is the address of the website, not the website itself.


How does PHP function in applications?

in php used for one typ website


What does url website mean?

The URL is the (homepage) Internet address of a website. The homepage is referred to as a URL and the inner pages of the website are referred to as the htmls.


How do you write themes in PHP?

You can use Cascading Style Sheets (CSS) to create website themes for your PHP website.


What is a feature of PHP?

PHP or Personal Home Page is a website scripting programming language.


When would one use a PHP table?

PHP is a type of coding for a forum or website. Any website that uses the PHP coding could use a table to organize data or to show relationships between the specific data that is on the website.


How do you give href toanother php page?

Here is the code below to redirect a webpage using php: <?php header('Location: url of the webpage'); // example: header('Location: index.php') exit; // exit after redirection is very important as php executes code line by line ?>