Or,
"Noel Wade" <[EMAIL PROTECTED]> wrote:
> You're missing string concatenation operators. I use "echo" instead of
> "print" - but here's how it should look with either:
>
> echo "<SELECT NAME=\"".$vari[$i][$j]."\">";
Try this instead:
Just add curly brackets before and after the variable and don't forget the "$" sign.
So, this
> > print "<SELECT name=\"vari[$i][$j]\">";
would be like this:
print "<SELECT name=\"{$vari[$i][$j]}\">";
or this:
echo "<select name=\"{$vari[$i][$j]}\">";
- E
...[snip]...
__________________________________________________
Do You Yahoo!?
Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php