Hi there

I am working on a Web application where I need a section called AddNews.This section is under control by Admin of an web application.Admin can add any types of news in the form of Text,Images,Videos and later other user can view it on Latest News section.

My Question is How can I design Front End of AddNews section.Where Admin can add pictures,videos,text etc for a news?

Thanks

hi you can create page with the mentioned option (Text,Images,Videos). Create an xml template or text property file which contain path of video/image url and text content. In new section you have to phrase xml/text file.Then write a appropriate logic to display the text/video/image. You can use db table too for the same. Xml file may be like this

<xml>
    <news-feed>
        <message>text Content </message>
        <image>http://www.xyz.com/images/image.jpg</image>
        <video>video path</video>
    </news-feed>

</xml>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.