> following situation: I want to create articles for some people to present > themselves. Nadmin lets me choose the structure of such articles (like > header, abstract,content..) I have tried to give the article some extra > fields (email,picture...). Ok so far, but how do I extract these extra > fields??? > Obviously &(article.email) or &(article.picture) doesn't work. > If I look at the details in of those articles, it tells me, those things are > stored as: field 0 "content_of_email" > field 1 "content_of_picture" > But I don't know how to adress those fields. > Any hints?
Such things could be done with MidCom, but you may simple make $article->email = $article->extra1; $article->picturel = $article->extra2; and so on ..... that way You may use later &(article.email); etc Besides You may use article's attachments to store pictures. Piotras --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
