little problem in PHP

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
eshban
Forum Contributor
Posts: 184
Joined: Mon Sep 05, 2005 1:38 am

little problem in PHP

Post by eshban »

Everah | Slightly edited to reflect the way we want the use of language around here.

[url=http://forums.devnetwork.net/viewtopic.php?t=30037]Forum Rules[/url] Section 1.1 wrote:11. Please use proper, complete spelling when posting in the forums. AOL Speak, leet speak and other abbreviated wording can confuse those that are trying to help you (or those that you are trying to help). Please keep in mind that there are many people from many countries that use our forums to read, post and learn. They do not always speak English as well as some of us, nor do they know these aberrant abbreviations. Therefore, use as few abbreviations as possible, especially when using such simple words.

Some examples of what not to do are ne1, any1 (anyone); u (you); ur (your or you're); 2 (to too); prolly (probably); afaik (as far as I know); etc.
I want to edit an item,

Structure of the tables is as follows:

Category: ( catid, catname, catdesc )

CategoryRef: ( newid, catid, parentid )

Record is storing as follows:

Category Table:

catid catname catdesc
1 A some text
2 B some text
3 C some text
4 D some text
5 E some text
6 G some text
7 F some text
8 H some text

CategoryRef Table:

newid catid parentid
1 1 0
2 2 1
3 3 2
4 4 3
5 5 2
6 6 0
7 7 1
8 8 6

and so on.................


edit_item.php is as follows:


Category: Here a drop down list (combo box) will [s]b[/s] BE displayed in which all the categories and its subcategories will [s]b[/s] BEdisplayed .

User can see all the categories in the form of a tree, like:

A >> B >>> C >>>> D
A >> B >>> E
A >> F
G >> H
I >> J >> K
L >> M

and so on......

user can see all the tree from root to its n-level category but can select only the last one to use in an item.

Item title: _______


here are the remaining fields will [s]b[/s] BEdisplayed...
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

Not sure I understand what you are asking here :?
Post Reply