DESIGN CONCEPT (performance) - switch/arrays/forms

Поиск
Список
Период
Сортировка
От Bruce Young
Тема DESIGN CONCEPT (performance) - switch/arrays/forms
Дата
Msg-id 20030530234143.2520.qmail@web10403.mail.yahoo.com
обсуждение исходный текст
Ответы Re: DESIGN CONCEPT (performance) - switch/arrays/forms
Re: DESIGN CONCEPT (performance) - switch/arrays/forms
Список pgsql-php
Hi list!
i am working on a little project where i have a PHP script that selects a form
(located on hard drive)
using the switch statement and "include".  for example:

switch ($type)
{
    case 1:
        include 'forms/add_edit/form_book.php';
        break;

    default:
        show_error("Item Type not found",1);
}

i have about 5 scripts that use switch statement to select forms.

Problem is, right now i only have 1 category ($type).  Now when i  add about 10
or 20+ more categories, these scripts will start to become a pain to maintain
with all the switch/cases.
My idea is to have a category table with references to the forms on disk so i
can fetch it into an array; search the array to find the corresponding form for
the category id, and include that form;
example:

Category table

 id | name |    form
---+-------+---------------
  1 | Book  | form_book.php

--------------------------
$type = $HTTP_GET_VARS['type'];

# select id, form  from categories;

# assign array values returned by query
# search if category exists ($type) and present error message

# present corresponding form to $type.
----------

My concern is, would this be too much work on the database and would it be
better to manually code it into the PHP script.
if this concept could work fine, could anyone give me an example on how to do
this?  i am just learning PHP.  thanks a lot.

  - bruce


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com

В списке pgsql-php по дате отправления:

Предыдущее
От: "scott.marlowe"
Дата:
Сообщение: Re: help ?
Следующее
От: brew@theMode.com
Дата:
Сообщение: Re: DESIGN CONCEPT (performance) - switch/arrays/forms