Log in

View Full Version : Connecting 2 variables


mr e
08-08-2002, 07:04 AM
ok i think it's easiest to explain with an example so here...

<?php
$opt1 = "hi";
$opt2 = "hey";
$opt3 = "hello";

$i=1;
for($i=1;$i<=3;$i++) {
print "$opt$i";
;}
?>

i want it to print "hiheyhello", but i can't figure out how or if theres a way to connect these two variables, any ideas?

Admin
08-08-2002, 07:49 AM
You should read the PHP manual page about "Variable Variables". Until you do, this is the code you want:
<?php
$opt1 = 'hi';
$opt2 = 'hey';
$opt3 = 'hello';

for ($i = 1; $i < 4; $i++) {
echo ${'opt'.$i};
}

?>

mr e
08-08-2002, 10:33 PM
ok thanks, i have been reading a lot at www.php.net but i couldn't think of what it would've been called to search for

Admin
08-09-2002, 07:24 AM
<a href="http://www.php.net/manual/en/language.variables.variable.php" target="_blank">http://www.php.net/manual/en/languag...s.variable.php</a>