Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this simple code and I need help with transfer to smarty. What will be the template? What will be the file?

  <?php
  if($_POST){
  $maxCislo = $_POST["maxCislo"];
  if($maxCislo >= 2;) {
  echo "2; "

    }
 for($i = 3; $i < $maxCislo; $i = $i + 2){
 $l = 0;
for($j = 2; $i > $j; $j++) {
if($i % $j == 0){
$l++;
 }
 }
if($l == 0){
echo "$i; ";
 }
}
 }
  ?>
 <html>
 <form method="post" action="#">
 <input type="text" name="maxCislo">
 <input type="submit" value="Odeslat">
 </form>
 </html>

We are here to do it 5 hours and somehow I still can not. Many thanks

share|improve this question

1 Answer

I'm not entirely sure what the question is, or what your code actually does, but it looks like it would be fairly simple to convert to Smarty just by replacing each line of PHP with the Smarty equivalent.

Here are some hints:

share|improve this answer
Very you please write this code as it does not work again – Ajtak Jan 15 at 20:51
@Atjak If you want somebody to write your code for you, I suggest you pay a professional programmer. If you have specific questions or problems, ask here and somebody may be kind enough to help you for free. – IMSoP Jan 15 at 22:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.