Hi every one any body can help me in this regards ? i don't know how to do that
how do i convert following code into sub catagory ?
like . . .
[PHP]
Computer
Mainboards
Keyboards
Mouse
Process
Intel
AMD
these catagories i've got in database
<%
Dim Conn, rsCatalog
Set Conn = Server.CreateOb ject("ADODB.Con nection")
Conn.Open ConString
Set rsCatalog = Conn.Execute("S ELECT * FROM catalogs")
While Not rsCatalog.EOF
Response.Write rsCatalog("cata logID")
rsCatalog.MoveN ext
Wend
rsCatalog.Close
Set rsCatalog = Nothing
%>
but when i display it's just like not with subcatagories ?
Computer
Mainboards
Keyboards
Mouse
Process
Intel
AMD
[/PHP]
but i want just main 2 catagories like Computer & Process then any body click on the Computer section then it's bring subcatagories ?
how do i convert following code into sub catagory ?
like . . .
[PHP]
Computer
Mainboards
Keyboards
Mouse
Process
Intel
AMD
these catagories i've got in database
<%
Dim Conn, rsCatalog
Set Conn = Server.CreateOb ject("ADODB.Con nection")
Conn.Open ConString
Set rsCatalog = Conn.Execute("S ELECT * FROM catalogs")
While Not rsCatalog.EOF
Response.Write rsCatalog("cata logID")
rsCatalog.MoveN ext
Wend
rsCatalog.Close
Set rsCatalog = Nothing
%>
but when i display it's just like not with subcatagories ?
Computer
Mainboards
Keyboards
Mouse
Process
Intel
AMD
[/PHP]
but i want just main 2 catagories like Computer & Process then any body click on the Computer section then it's bring subcatagories ?
Comment