php $count - Undefined variable:

后端 未结 2 722
-上瘾入骨i
-上瘾入骨i 2021-01-22 15:35

I have this code that I want to insert a div clear class the it reaches the 5th column:

\"> <
2条回答
  •  离开以前
    2021-01-22 15:54

    It is because you have not declared your variable. If you add $count = 0; to the top of your PHP file the error will go away as you have declared the variable.

    You should also note that this has nothing to do with Zend Framework.

提交回复
热议问题