Miscellaneous Code
  Home arrow Miscellaneous Code arrow FlexPHPNews Pro
Codewalker Forums 
  Tutorials  
Database Articles  
Miscellaneous  
Navigation Usability  
PEAR Articles  
Programming Basics  
Server Administration  
XML Tutorials  
  Reviews  
Database Book Reviews  
Linux Book Reviews  
Miscellaneous Reviews  
PHP Book Reviews  
PHP Software Reviews  
Server Admin Reviews  
SQL Tool Reviews  
  Code Gallery  
Content Management Code  
Contest Code  
Counters Code  
Database Code  
Date Time Code  
Discussion Board Code  
Email Code  
File Manipulation Code  
GUI Code  
Link Farm Code  
Miscellaneous Code  
Search Code  
Site Navigation Code  
User Management Code  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Download TestComplete 
Forums Sitemap 
Weekly Newsletter 
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
MISCELLANEOUS CODE

FlexPHPNews Pro
By: Codewalkers
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 2
    2003-07-17

    Table of Contents:

    Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    FlexPHPNews Pro is a simple, free and open source news admin system. You can add multi-level sub-categories. Users can search the news by keywords, rate the news or send the news to friends.Feature article ,Site statistics and News archive are available.Easy for internationalization. All the news are printable.Multiple pictures uploads for the news is allowed.Low price customization service is provided.


    By : milly

    <?php

    /*
    http://www.china-on-site.com/flexphpnews/
    Written in PHP+Mysql, FlexPHPNews Pro is a simple, free and open source website news admin system. Features:
    1.You can add multi-level sub-categories.
    2.All the text in this program is put in one file. Once you edit this file, you can generate a new language version or customize the text in your program.
    3.Site statistics.
    4.You can upload multiple pictures for the news.
    5.Feature article in every catalog.
    6.Users can search the contents of the news by keywords
    7.Users can rate for the news.
    8.Users can send the news to friend.
    9.News archive by date.
    10.Printable version of the news.
    */

    //Database settings

    $DBName = "dingyenews";
    $DBUser = "root";
    $DBPassword = "";
    $DBHost = "localhost";
    $baseurl = "";

    //Front Language settings
    $front_charset = "iso-8859-1";
    $front_previouspage = "Previous page";
    $front_nextpage = "Next page";
    $front_submititle = "Title";
    $front_categories = "Categories";
    $front_indextitle = "Index";
    $front_searchresult = "Search result";
    $front_searchsubmit = "Search";
    $front_latestnews = "Latest news";
    $front_more = "More";
    $front_rateit = "Rate it";
    $front_rating = "Rating";
    $front_letmerateit = "Let me rate it";
    $front_ratebest = "best";
    $front_ratesubmit = "Rate!";
    $front_adddate = "Date of this item added";
    $front_source = "Source of this article";
    $front_timesread = "times read";
    $front_printstory = "print story";
    $front_sendtofriend = "send to friend";
    $front_choosedate = "Please choose the date: ";
    $front_sendsubmit = "Send";
    $front_friendname = "Your friend's name";
    $front_friendemail = "Your friend's email";
    $front_yourname = "Your name";
    $front_comment = "Comment";
    $front_newssent = "News has been sent to your friend.";

    $front_latestonhomerecord = 10;
    $front_latestoncatarecord = 20;
    $front_searchresultrecord = 20;
    $front_catnewsonhomerecord = 5;
    $front_catnewsoncatarecord = 5;

    //Admin Language settings
    $admin_charset = "iso-8859-1";
    $admin_url = "URL";
    $admin_ok = "OK";
    $admin_back = "Back";
    $admin_add = "Add";
    $admin_name = "Name";
    $admin_del = "Del";
    $admin_previouspage = "Previous page";
    $admin_nextpage = "Next page";
    $admin_news = "News";
    $admin_delconfirm = "Really want to delete it?";
    $admin_yes = "Yes";
    $admin_no = "No";
    $admin_edit = "Edit";
    $admin_adminindex = "Admin index";
    $admin_next = "Next";
    $admin_reset = "Reset";
    $admin_description = "Description";
    $admin_adminsystem = "Admin system";
    $admin_admin = "Admin";
    $admin_welcome = "Welcome to admin system";
    $admin_existing = "Existing";
    $admin_opreation = "Opreation";
    $admin_save = "Save";
    $admin_picture = "Picture";
    $admin_install = "install";
    $admin_databasename = "Database Name";
    $admin_databaseuser = "Database User";
    $admin_databasepass = "Database Password";
    $admin_databasehost = "Database Host";
    $admin_adminemail = "Admin Email";
    $admin_databasesetting = "Database setting";
    $admin_setadminpassword = "Please choose username and password for administrator";
    $admin_username = "username";
    $admin_password = "password";
    $admin_loginfail = "Wrong username or password";
    $admin_login = "log in";
    $admin_linkadded = "link added";
    $admin_constisnotwriteable = "const.inc.php is not writeable,please change its permission";
    $admin_catalogadmin = "Category admin";
    $admin_newsadmin = "News admin";
    $admin_parentcatalog = "Parent category";
    $admin_catalogalreadyexist = "Category already exist";
    $admin_catalog = "Category";
    $admin_isdisplay = "Is displayed?";
    $admin_none = "none";
    $admin_title = "Title";
    $admin_content = "Content";
    $admin_viewnumber = "Hits";
    $admin_rating = "Rating";
    $admin_ratenumber = "Rate number";
    $admin_source = "Source";
    $admin_sourceurl = "Source URL";
    $admin_installedurl = "URL this script will be installed";
    $admin_isfeatured = "Is featured";
    $admin_introtext = "Intro text";
    $admin_senttimes = "Sent times";
    $admin_descending = "descending";
    $admin_ascending = "ascending";
    $admin_statistics = "Statistics";

    $help_source = "If your text is from other source.";

    ?>

    Click to Download File



    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

    More Miscellaneous Code Articles
    More By Codewalkers

     

    IBM® developerWorks developerWorks - FREE Tools!


    Check out the new Jazz space on developerWorks

    <a href="http://zeus.developershed.com/shonuff.php?blackbird=3853&zoneid=442&source=&dest=http%3A%2F%2Fwww.ibm.com%2Fdeveloperworks%2Fspaces%2Fjazz%3FS_TACT%3D105AGY31%26S_CMP%3DDEVSHED&ismap="><img src="http://images.devshed.com/corp/img/news/jazz01.gif" alt="developerWorks Jazz space" align="left"></a>You've heard the buzz about Jazz... want to know more about it from a developer's perspective? Check out the Jazz space on developerWorks. This space is an up-to-date resource for developers, including technical information about Jazz and products built on Jazz, like Rational Team Concert Express. The Jazz space includes content from a wide variety of sources, including links, feeds, and comments from experts.
    FREE! Go There Now!


    NEW! Best Practices: The Integrated Project and Portfolio Management Platform.

    Hear how IBM Rational Project and Portfolio Management integrated solutions help teams put the right tools and processes in place to maximize the effectiveness and efficiency of project teams and ensure that the business vision is being executed correctly. Learn how to automate and integrate requirements prioritization, top-down project planning, communications and controls, and methodology deployment to keep your scope, costs, and schedules under control. Tackle with an end-to-end approach the management of scope and scope changes, usage of methodology to control and empower project teams, and optimization of resources to align activity costs with the overall project plan.
    FREE! Go There Now!


    NEW! A Layered approach to delivering security-rich Web applications

    As businesses grow increasingly dependent upon Web applications to provide services to customers, employees and partners, these complex applications become more difficult to secure. Although traditional security solutions protect Internet infrastructure layers, they do not guard against HTTP and HTML attacks. Many organizations that conduct security testing still deploy applications that allow attackers to manipulate their logic and wreak havoc on their business. To mitigate this risk, development and delivery teams must address Web application security throughout the lifecycle, addressing the many layers detailed in this paper.
    FREE! Go There Now!


    NEW! Best Practices in Integrated Requirements Management

    Poor Requirements Management capabilities in an Enterprise have been linked to excessive project failures, escalating IT costs, and failure to deliver competitive advantage into the marketplace. Join Brianna M Smith from IBM Rational and learn about how successful organizations align IT and Business stakeholders through collaborative processes and tools for effective requirements management, and how an integrated approach across the IT lifecycle can provide unparalleled visibility and traceability to ensure that project teams are delivering on the business vision by "doing the right things" and "doing things right."
    FREE! Go There Now!


    NEW! Rational Talks to You: Scott Ambler on being agile in a global development environment

    Join this Rational Talks to You teleconference on December 6 at 1:00 pm ET to participate in an agile application development discussion and get your questions answered on using IBM Rational Method Composer in a distributed environment.Get your questions answered!
    FREE! Go There Now!


    NEW! Software Change and Configuration Management Solution Guidelines

    This whitepaper provides areas to consider when evaluating any software configuration management solution. It addresses how the IBM solutions (Rational ClearCase and Rational ClearQuest) meet the needs and requirements of both project leaders and developers to provide successful Software Change and Configuration Management.
    FREE! Go There Now!


    NEW! The role of integrated requirements management in software delivery

    This paper is about the critical role that a discipline called integrated require­ments management can play in helping to ensure that your business goals and IT investments are continuously aligned—whether you are sourcing, integrat­ing, building or maintaining software. It also looks at ways that automated IBM Rational® products can work together to help you use requirements in the very best way.
    FREE! Go There Now!


    NEW! Trial download: IBM Lotus Forms V3.0

    Get a free trial download of IBM Lotus Forms V3.0 (formerly Workplace Forms), which provides a zero-footprint eForms solution to help you automate and move forms-based business processes off the desktop and onto the Web. With Lotus Forms, you can extend applications beyond the firewall by creating a single electronic form document ready for use in both thick and Web 2.0 thin client format.
    FREE! Go There Now!


    NEW! Trial download: IBM Rational Performance Tester V7.0.1

    Get a free trial download of the latest version of IBM Rational Performance Tester V7.0.1, a load and performance testing solution for teams concerned about the scalability of their Web-based applications. Combining multiple ease-of-use features with granular detail, Rational Performance Tester simplifies the test-creation, load-generation and data-collection processes that help teams ensure the ability of their applications to accommodate required user loads.
    FREE! Go There Now!


    NEW! Webcast: Eclipse: Empowering the universal platform

    The Eclipse community is constantly working to extend Eclipse's functionality. In this webcast, learn about some of the most important and feature-rich projects under development. From multi-language support to plug-in development, tune in to see what Eclipse is capable of now.
    FREE! Go There Now!



    All FREE IBM® developerWorks Tools!

    MISCELLANEOUS CODE ARTICLES

    - A Web App Based on a Model for the CodeIgnit...
    - Completing a Model for the CodeIgniter PHP F...
    - Validating Input Data with the CodeIgniter P...
    - Deleting Database Records with the CodeIgnit...
    - Inserting Database Records with a CodeIgnite...
    - Fetching Database Rows with a Model for the ...
    - Model Data and Validation Rules for a Generi...
    - Building a Generic Model for the CodeIgniter...
    - upload image to database sql
    - Random Password Generator
    - BCroot, get the root of a number with BC fun...
    - Find pi in a high precision
    - [PHP5] FORMCHECKER : data validation
    - SPL and ITERATOR : examples
    - Xml with Rss Feeds





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 2 Hosted by Hostway
    Stay green...Green IT