Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

left side var creation 1

Status
Not open for further replies.

jmoeller18

Programmer
Oct 9, 2001
12
0
0
US
what function will allow me to interpret the value of a variable created from the values of other variables?

line 5 is in question.

<?php
$ab = &quot;&quot;;
$y = &quot;a&quot;;
$z = &quot;b&quot;;
$y$z=&quot;success&quot;; //line 5
echo &quot;ab: &quot;.$ab; // this should print &quot;sucess&quot;;
?>

Jeffrey E. Moeller
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top