• home
  • forum
  • my
  • kt
  • download
  • this:2/27 25records  total:658    start  Previous  Next  Last    goto:
    Five good programming habits in PHP
    ON: 2009-04-17 10:44:58
    Just like any language, developers can write code in PHP that ranges in quality from truly awful to very good. In this article, learn good programming habits that can help you bridge the productivity gap. Building code that is easy to read, understand, and maintain will enable you to debug, fix, and extend your code with lower risk.
    9 times | category: [Development]
    Build semantic Web CRUD operations using PHP
    ON: 2009-04-17 10:43:10
    Create, Read, Update, and Delete (CRUD) operations are the most basic database operations, but they are also the most crucial. CRUD operations are usually done using the Structured Query Language (SQL) on relational database systems. As the Web is becoming more data-oriented, there is a need to shift from SQL-based CRUD operations to semantic Web-based CRUD operations. In this article, learn how to use PHP to perform CRUD operations over the semantic Web.
    7 times | category: [Development]
    30 game scripts you can write in PHP
    ON: 2009-04-17 10:41:56
    PHP is an easy-to-learn programming language. It's well suited for developing simple scripts you can use to help you in all kinds of games. Each article in this series will cover 10 scripts simple enough for even a beginning developer, but useful enough for a seasoned game player. The goal is to give you something you can modify to suit your needs, so you can impress players by busting out your laptop at your next gaming session.
    35 times | category: [Development]
    How to Paginate Data with PHP
    ON: 2009-04-17 10:35:34
    How to Paginate Data with PHP on NETTUTS.com for beginners
    24 times | category: [Database Related]
    PHP 5: MySQLi Prepared Statements
    ON: 2009-04-17 10:34:42
    This tutorial will guide you through creating MySQLi prepared statements. MySQLi is an extension/API for PHP that is also know as MySQL Improved. MySQLi is included with versions 5 of PHP and later that allows PHP developers to take advantage of all the features in MySQL 4.1.3. According to the manual:
    144 times | category: [Database Related]
    PHP Count Online Users tutorial
    ON: 2009-04-17 09:44:28
    In this tutorial we will make a Online user count script in PHP with easy steps, this online user count technique used in all advance site to track online users, u can also make it more advance according to your needs by simply modifying these code.
    46 times | category: [Counters]
    Everything You Need to Get Started with CodeIgniter
    ON: 2009-04-17 09:34:33
    Everything You Need to Get Started with CodeIgniter on NETTUTS
    6 times | category: [Content Management]
    Building faster Web apps using PHP and in-memory solidDB
    ON: 2009-04-17 09:32:22
    solidDB is an in-memory database that can perform at speeds up to 10 times faster than conventional databases. Learn how to use PHP with solidDB to build faster dynamic Web page applications. This article shows you how to use PHP to connect to a solidDB database and perform basic operations such as retrieve, update, and delete. You can use these steps as a foundation for building rich Web applications that harness the power of solidDB.
    2 times | category: [Content Management]
    Creating a Custom Wordpress Plugin from Scratch
    ON: 2009-04-17 09:28:21
    Creating a Custom Wordpress Plugin from Scratch on NETTUTS
    2 times | category: [Content Management]
    Working with a Content Management Framework: MODx
    ON: 2009-04-17 09:21:47
    Working with a Content Management Framework: MODx on NETTUTS
    5 times | category: [Content Management]
    Installing Concrete5 locally on Mac OS X
    ON: 2009-04-17 09:19:45
    A thorough guide on installing the amazing CMS Concrete5 locally on Mac OS X.
    1 times | category: [Content Management]
    How to Read an RSS Feed with PHP
    ON: 2009-03-10 10:47:39
    How to Read an RSS Feed with PHP
    120 times | category: [XML and PHP]
    Tutorial: How to Create RSS Feeds
    ON: 2009-03-10 10:45:39
    In this tutorial, we'll explore some of the uses for RSS feeds, why your website should have them, and you'll also learn how to make static feeds with XML and dynamic feeds using PHP.
    73 times | category: [XML and PHP]
    Getting Remote Webpage Info Using PHP
    ON: 2009-03-10 10:33:51
    If you run any website that accepts submitted links, be it a tutorial website, a directory or a bookmarking site, you may find it useful to automatically retrieve information about a URL. Wouldn’t it be nice if you ran a web directory and you could bring up the title, keywords and description of a URL without the user having to enter it? This tutorial shows you how this can be achieved via PHP.
    73 times | category: [Web Fetching]
    Trackbacks with Google Blog Search and Zend Feed
    ON: 2009-03-10 10:29:52
    Tutorial on how to fetch the external links to any given article through Google Blog Search's Atom feature and displaying them as a list of trackbacks. With this implemented your blog readers will get the complete picture of the off-site discussion.
    20 times | category: [Web Fetching]
    User Membership with PHP
    ON: 2009-03-10 10:21:42
    User Membership with PHP on Nettuts.com for beginners
    86 times | category: [User Authentication]
    PhpBB User System Integration With Your Website
    ON: 2009-03-10 10:20:57
    Learn how to integrate your site with your PhpBB forums for an easy user system!
    117 times | category: [User Authentication]
    5 Helpful Tips for Creating Secure PHP Applications
    ON: 2009-03-10 10:02:58
    5 Helpful Tips for Creating Secure PHP Applications
    42 times | category: [Security]
    Introduction to SQL Injection
    ON: 2009-03-10 09:56:11
    In this tutorial we look at the issue of SQL injection, how the attackers use it, the problems that can arise and methods of prevention using PHP.
    30 times | category: [Security]
    PHP Forms and Regular Expressions
    ON: 2009-03-10 09:52:44
    Have you ever needed to validate input form field from user? I'm sure yes! This tutorial shows you the use of POSIX regular expressions in this task.
    125 times | category: [Security]
    Create a Simple Search Script with Very Accurate Results in PHP
    ON: 2009-03-10 09:37:52
    One of the most important features, but often overlooked is the search functionality of a site.
    354 times | category: [Searching]
    PHP Redirect Tutorial
    ON: 2009-03-10 09:32:28
    Tutorial demonstrating how to use PHP to perform a redirect. Discusses temporary redirect, permanent redirects, and conditional redirects.
    23 times | category: [Redirection]
    Generating random strings within PHP
    ON: 2009-03-10 09:25:16
    You may use this code snips to make your own random passwords or any other random strings. In this tutorial we need to use two functions of PHP: rand() and chr()
    6 times | category: [Randomizing]
    AJAX Voting in PHP - Cast a Vote Without Reloading the Page
    ON: 2009-03-09 16:33:48
    A simple feature that many may over look is the ability to cast a vote without having to reload a page.
    177 times | category: [Polls and Voting]
    Real World OOP with PHP and MySQL
    ON: 2009-03-09 15:24:08
    Real World OOP with PHP and MySQL on NETTuts.com for beginners
    51 times | category: [OOP]
    this:2/27 25records  total:658    start  Previous  Next  Last    goto:

    Category

      Ad Management (6)
      Calendars (3)
      Chat Systems (8)
      Content Management (47)
      Cookies and Sessions (12)
      Counters (16)
      Database Related (37)
      Date and Time (15)
      Development (27)
      Discussion Boards (8)
      E Commerce (9)
      Email Systems (15)
      Error Handling (8)
      File Manipulation (38)
      Flash and PHP (6)
      Form Processing (26)
      Guestbooks (13)
      Image Manipulation (26)
      Installing PHP (7)
      Introduction to PHP (32)
      Link Indexing (9)
      Mailing List Management (9)
      Miscellaneous (62)
      Networking (9)
      News Publishing (9)
      OOP (29)
      PEAR (7)
      PHP vs Other Languages (2)
      Polls and Voting (7)
      Postcards (1)
      Randomizing (15)
      Redirection (12)
      Searching (10)
      Security (34)
      Site Navigation (17)
      User Authentication (16)
      WAP and WML (7)
      Web Fetching (10)
      Web Traffic Analysis (16)
      XML and PHP (18)