PHP and Files
Description: Working with files is a basic necessity for programmers and PHP gives you a great facility for creating, uploading, and editing files. This section is completely dedicated to how PHP can interact with files. After completing this section you should have a solid understanding of all types of file manipulation in PHP.
Added on: 15-Jul-2006 Hits: 187
|
Comments (0)Creating a word filter and parser
Description: In this tutorial im going to show you how to create a basic Word filter and smiley Parser.
Its Split in to 4 parts. The first 2 parts are about the word filter, firstly its code and secondly a breakdown of the code.
The 3rd and 4th part follow the same patten except on the topic Smilys parsing.
I hope this is helpful to some people.
Added on: 15-Aug-2006 Hits: 220
|
Comments (0)Database design tips
Description: Don’t just start adding tables to your database straight away – I’ve done this and then later realized it won’t work how I wanted it to. Just walk away from your computer for 10 minutes (you can survive, don’t worry) and get some pen and paper. Now in one color, write the tables you plan on making , and then beneath these headings write the columns, column types, and a description of the column. Sitting there away from the computer really helps spark some new ideas, and makes database design a lot easier.
Added on: 15-Aug-2006 Hits: 224
|
Comments (0)Build PHP Style Switcher
Description: Want to have a style switcher that lets your site’s visitors choose a different style sheet? Want it to work even if there is no JavaScript support? The trick is to use a server-side language like PHP, which is what I use for my style switcher.
Added on: 01-Sep-2006 Hits: 355
|
Comments (0)Smiley System
Description: Using this code will replace the smilies people enter with images!
Added on: 08-Nov-2006 Hits: 210
|
Comments (0)GROUP BY in MySQL
Description: Learn how to group items in mysql. This is very useful when you have multiple instances of the same item in your database.
Added on: 11-Nov-2006 Hits: 195
|
Comments (0)Google suggest - Ajax
Description: This tutorial will walk you through creating a search suggest similar in fashion to that of Google Suggest using AJAX technologies.
Added on: 14-Nov-2006 Hits: 212
|
Comments (1)Get Current Page URL
Description: Sometimes, you might want to get the current page URL that is shown in the browser URL window. For example if you want to let your visitors submit a blog post to Digg you need to get that same exact URL. There are plenty of other reasons as well. Here is how you can do that.
Added on: 02-Dec-2006 Hits: 246
|
Comments (0)Passing Javascript Variables to PHP
Description: JavaScript is mainly used as a client side scripting language, while PHP is a server side technology. Unlike Java or ASP.Net, PHP doesn't have tools to make it work client side. That is why you need to combine JavaScript and PHP scripts to develop powerful web-applications.
Added on: 02-Dec-2006 Hits: 228
|
Comments (0)