Skip to main content

Posts

Showing posts with the label php 5

A useful shortcut in PHP 5

Recently I started using a shortcut for my $_GET variables in PHP 5. It seems that instead of doing the following: <?php     $page = $_GET['page'];     $article = $_GET['article']; ?> There is an easier way where all the $_GET variables can be assigned automatically.