
05-13-2010, 09:58 PM
|
 |
|
|
Join Date: Nov 2004
Posts: 669
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Some suggestions for coding:
- Put code that is used throughout all actions (do=whatever) on top of each plugin. Example:
Code:
$fid = $vbulletin->input->clean_gpc('p', 'fid', TYPE_UINT);
or, have each action its own plugin
- I'd love to have the program creating a database table for each form. That would be very great. You then can make a review type out of it just with adding a database key so that there can only be one entry for one userid. Querying this data would be far more easy, though.
|