Tagged Questions

5
votes
4answers
145 views

In PHP how do you create reusable objects?, is there a best practice to this? What do you prefer?

I am creating some reusable objects in php, and I wanted to know whats the best way to build them. Below I have 2 examples of different ways of doing this. Class Uploader{ public $Filename; ...
1
vote
4answers
190 views

a reusable query with modifications?

i'm using this mysql query alongwith php to search for multiple keywords: $query = "SELECT cQuotes, vAuthor, cArabic, vReference FROM ".$table." WHERE ("; $countFields = count($arrayFields); ...
1
vote
4answers
5k views

Simple / reusable CRUD in PHP (NO famework or big classes)

I'm working on a PHP CMS like project and I'm trying to find out what's the most convenient way of dealing with the CRUD functionality in PHP. The CMS is programmed completely in procedural PHP (no ...
0
votes
4answers
208 views

PHP based image management

A reason I've picked up working with the Zend Framework was that I keep hearing how easy it is to reuse code and not have to reinvent the wheel every time you start a new project. I do find this true ...