# \[PHP\] URL variables?

**URL:** https://forum.kirupa.com/t/php-url-variables/181105
**Category:** Uncategorized
**Created:** [March 6, 2006, 3:51pm UTC](https://forum.kirupa.com/t/php-url-variables/181105 "2006-03-06T15:51:52Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![chunk](https://avatars.discourse-cdn.com/v4/letter/c/ee59a6/32.png) [@chunk](https://forum.kirupa.com/u/chunk)
#### Post date: [March 6, 2006, 3:51pm UTC](https://forum.kirupa.com/t/php-url-variables/181105/1 "2006-03-06T15:51:52Z")

</div>

[FONT=Verdana][SIZE=2][COLOR=Black]Hi,[/COLOR][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][COLOR=Black]This is mostly a post out of curiosity…[/COLOR][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][COLOR=Black]I know when the URL of a website is something like: [www.somesite.com/file.php?a=hello](http://www.somesite.com/file.php?a=hello)[/COLOR][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][COLOR=Black]The variable a is set to “hello”[/COLOR][/SIZE][/FONT]

Example code:

```php
if (isset($_GET['a'])) {
$a = $_GET['a']; }

```

[FONT=Verdana][SIZE=2][COLOR=Black][/COLOR][/SIZE][/FONT]  
So now $a would now be, “hello”.  
[FONT=Verdana][SIZE=2][COLOR=Black][/COLOR][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][COLOR=Black]  
[/COLOR][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][COLOR=Black]But I have seem some sites that use [www.somesite.com/file.php?home](http://www.somesite.com/file.php?home) or /file.php?contact[/COLOR][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][COLOR=Black] [/COLOR][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][COLOR=Black]What exactly is this? Is it setting a blank variable “home” / “contact” or is it telling the file.php to execute the function “home” / “contact”.[/COLOR][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][COLOR=Black] [/COLOR][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][COLOR=Black]Just wondering.[/COLOR][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][COLOR=Black] [/COLOR][/SIZE][/FONT]  
[FONT=Verdana][SIZE=2][COLOR=Black]Thanks![/COLOR][/SIZE][/FONT]
