HI!


When I run the foillowing code:


<form action="<?php echo"$PHP_SELF"; ?>" method="post">
<input type="hidden" name="flag" value="0">
<select name="recepients" onchange="javascript:submit();">
     <option value="">--</option>
     <option value="1">1</option>
     <option value="2">2</option>
     <option value="3">3</option>
     <option value="4">4</option>
     <option value="5">5</option>
     </select></form></td>
      </tr>
     </table>

<?php
if(isset($flag))
{
for($i=1; $i<=$recepients; $i++)
{
echo "<input type=\"text\" name=\"$i\">"  ."<br>";
}
}
else
{
echo "<input type=\"text\" name=\"1\">";
}
?>

I get error on saying echo $i on the next page...


****************************************************
Parse error: parse error, expecting `T_VARIABLE' or `'$'' in 
C:\HTTPD\HTDOCS\preston\sms\send.php

****************************************************


WHy is it so..?
Is there any other way of doing the above...

Please let me know..

 

 

Thanx a lot!

Dhaval Desai


 



---------------------------------
Do You Yahoo!?
Yahoo! Mail Personal Address - Get email at your own domain with Yahoo! Mail.

Reply via email to