Alexander Levenetz wrote:
> 
> Hello Emile,
> 
> "Fatal error: Call to unsupported or undefined function foreach() in
> content on line 110"
> 
> line 110 is:
> 
> > foreach (array(28, 59, 26) as $topic) {
> 
> It should probably be 62 instead of 26 (but that's of course not the
> problem). What's wrong here? Thanks!

Oy, PHP4 specific, sorry. Replace with

$topics = array(28, 59, 62); reset ($arr);
while (list(, $topic) = each ($topics)) {

Emile

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to