Pages

Wednesday, March 5, 2014

Tutorial Variable Variables

<?php

  $var1 = 'nameOfVariable';

  $nameOfVariable = 'This is the value I want!';

  echo $$var1; 

?>

Reference URL

No comments:

Post a Comment