Create thumbnails with php
Description: Create a copy of an image as a thumbnail. You get a great function that use the GD library to create the new thumbnail file.
Added on: 18-Mar-2006 Hits: 229
|
Comments (1)Regular Expressions in PHP
Description: Regular expressions are a powerful tool for examining and modifying text. Regular expressions themselves, with a general pattern notation almost like a mini programming language, allow you to describe and parse text. They enable you to search for patterns within a string, extracting matches flexibly and precisely. However, you should note that because regular expressions are more powerful, they are also slower than the more basic string functions. You should only use regular expressions if you have a particular need.
This tutorial gives a brief overview of basic regular expression syntax and then considers the functions that PHP provides for working with regular expressions.
Added on: 29-Oct-2007 Hits: 226
|
Comments (0)Using and Understanding Sessions
Description: A collection of 19 tips on understanding and using sessions in PHP. Clear explanations and tutorial exercises are provided on starting and closing sessions, saving and retrieving values in sessions, deciding how session IDs to be transferred, deciding where to store session files, deciding when to expire session values, etc.
Added on: 12-Jul-2006 Hits: 220
|
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: 220
|
Comments (0)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: 216
|
Comments (0)PHP Form Image Upload
Description: This tutorial shows you how to upload an image on your server using PHP and html forms. You will also learn how to verify if the uploaded file is an image (checking the extension), if it doesn't overtakes a size limit and how to change the uploaded file name.
Added on: 13-Jul-2007 Hits: 211
|
Comments (0)