<?php
for($i=0;$i<3;$i++)
{?>
<form name="form1" method="post" action="http://localhost/wordpress/?page_id=348" >
<input type="submit" name="a" value=="<?php $i ?>" style= "width:100px;height:30px; ">
<input type="hidden" name="button1" value="<?php $i ?>">
</form>
<?php}?>
以前没有接触PHP,这是第一次写PHP程序,请指教。
7 个解决方案
#1
什么不行啊
#2
这是要干嘛啊?说明意图。。。。
#3
<?php echo $i;?>
不明白你写的啥
#4
看不懂
#5
<form name="form1" method="post" action="http://localhost/wordpress/?page_id=348" >
<?php
for($i=0;$i<3;$i++)
{?>
<input type="submit" name="a" value=="<?php $i ?>" style= "width:100px;height:30px; ">
<input type="hidden" name="button1" value="<?php $i ?>">
<?php}?>
</form>
#6
其实没看懂你要什么?
#7
问题已经搞定,主要是格式问题,大家不需要明白这段代码是干吗的。重要问题格式问题已经标红。
<?php $i=0;?>
<?php echo "<table border=0 cellspacing=50px><tr>"; ?>
<?php while($i<$looptimes) :
?>
<?php echo "<td>"; ?>
<form name="form1" method="post" action="http://localhost/wordpress/?page_id=348" >
<input type="submit" name="a" value=<?=$i+1;?> style= "width:80px;height:40px; ">
<input type="hidden" name="button1" value=<?=$i;?> >
</form>
<?php echo "</td>"; ?>
<?php $i++; ?>
<?php endwhile; ?>
<?php echo "</tr></table>";?>
<?php $i=0;?>
<?php echo "<table border=0 cellspacing=50px><tr>"; ?>
<?php while($i<$looptimes) :
?>
<?php echo "<td>"; ?>
<form name="form1" method="post" action="http://localhost/wordpress/?page_id=348" >
<input type="submit" name="a" value=<?=$i+1;?> style= "width:80px;height:40px; ">
<input type="hidden" name="button1" value=<?=$i;?> >
</form>
<?php echo "</td>"; ?>
<?php $i++; ?>
<?php endwhile; ?>
<?php echo "</tr></table>";?>
#1
什么不行啊
#2
这是要干嘛啊?说明意图。。。。
#3
<?php echo $i;?>
不明白你写的啥
#4
看不懂
#5
<form name="form1" method="post" action="http://localhost/wordpress/?page_id=348" >
<?php
for($i=0;$i<3;$i++)
{?>
<input type="submit" name="a" value=="<?php $i ?>" style= "width:100px;height:30px; ">
<input type="hidden" name="button1" value="<?php $i ?>">
<?php}?>
</form>
#6
其实没看懂你要什么?
#7
问题已经搞定,主要是格式问题,大家不需要明白这段代码是干吗的。重要问题格式问题已经标红。
<?php $i=0;?>
<?php echo "<table border=0 cellspacing=50px><tr>"; ?>
<?php while($i<$looptimes) :
?>
<?php echo "<td>"; ?>
<form name="form1" method="post" action="http://localhost/wordpress/?page_id=348" >
<input type="submit" name="a" value=<?=$i+1;?> style= "width:80px;height:40px; ">
<input type="hidden" name="button1" value=<?=$i;?> >
</form>
<?php echo "</td>"; ?>
<?php $i++; ?>
<?php endwhile; ?>
<?php echo "</tr></table>";?>
<?php $i=0;?>
<?php echo "<table border=0 cellspacing=50px><tr>"; ?>
<?php while($i<$looptimes) :
?>
<?php echo "<td>"; ?>
<form name="form1" method="post" action="http://localhost/wordpress/?page_id=348" >
<input type="submit" name="a" value=<?=$i+1;?> style= "width:80px;height:40px; ">
<input type="hidden" name="button1" value=<?=$i;?> >
</form>
<?php echo "</td>"; ?>
<?php $i++; ?>
<?php endwhile; ?>
<?php echo "</tr></table>";?>