* Aash What can i use in PHP which is equivalent to {_$$var|} ??
2015-04-29 07:11 · (0)
* TechnoSparks * Aash Oh so you meant like this?

The PHP equivalent is
<?php

// GET var is achieved through page URL
$_GET["variable"];

// POST var is achieved through forms
$_POST["variable"];

// REQUEST var can be used for both forms and URL
$_REQUEST["variable"];

?>

Copy code


Remember to do isset() first, else the php will yield an error if the variable does not contain any value.
2015-04-30 03:44 (edited 2015-04-30 03:52 by TechnoSparks ) · (0)
* Aash * TechnoSparks Thank You very much!
2015-04-30 08:53 · (0)

Online: Guests: 1