初歩的な質問: 変数値を変数名として使用します
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php $a=1; $b=2; $c="LL".$a.$b; $$c="asdf"; echo $LL12; ?>
$a=1; $b=2; eval("$LL$a$b="asdf";"); エコー $LL12; <div class="clear"></div>