Saturday, April 7, 2012

Variable Variables

Variable Variables

<?php

  $var1 = 'nameOfVariable';

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

  echo $$var1; 

?>

 

No comments:

Post a Comment