phpfox; _如何在php中为变量提供href

时间:2013-03-05 05:38:26

标签: php

我想用超链接显示变量。有谁知道怎么给?我已经为href应用了以下方法:

<div style="width:50px;height:20px;float:right">
    <a href="#" onclick="$.ajaxCall('forum.UnFlag', 'user_id={$aThread.user_id} &thread_id={$aThread.thread_id} &rate_value=i', 'GET'); return false;">
            <button class="button" name="val[button]"  value="">$i </button>
    </a>
    <?php
            for ($i=0; $i <= 10; $i++)
            {
               echo "The number is ".$i."<br />";
            }
    ?>
</div>

如果您对此有任何疑问,请问我..

1 个答案:

答案 0 :(得分:0)

尝试

<?php
    for ($i=0; $i <= 10; $i++)
    {
       echo "The number is <a href=".$i." rel="">".$i."</a><br />";
    }
?>

并在php代码中更改以下换行变量。

<button class="button" name="val[button]"  value=""><?php echo $i; ?></button>