Ask a Question related to PHP Development, Design and Development.
-
Wayne... #1
are there any guides to creating a dynamic menu from mysql data?
I'd like to create a menu system thats dynamic in nature and pulls the page
id ,name, title etc from a mysql table so that when a page is added it will
be automatically linked into the menu system.
are there any guides out there about this?
Thanks in advance.
Wayne...
Wayne... Guest
-
Creating a Dynamic drop-down menu with MS Access2003 DB
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <!--#include file="Connections/myDatabase.asp" --> <% Dim Recordset1 Dim Recordset1_numRows set... -
Creating a Dynamic drop-down menu with MS Access 2003 DB
I'm trying to create a dynamic pull-down menu, i've created a MS Access 2003 database. And everytime i create a recordset linking my asp page to my... -
creating a dynamic menu, help please
hello could someone please tell me how to create a vertical dynamic menu/navigation bar that holds buttons and responds to mouse movement within... -
creating rows in mysql with data
Hi i have two files <HTML> <BODY> <form method="post" action="datain.php"> First name:<input type="Text" name="first"><br> Last name:<input... -
Creating a Dynamic Menu (Tree Hierarchy type)
Hi, I am trying to source an XTRA or a tut on how to build a dynamic tree menu. A buddy of mine built one using the TreeView xTRA but I see that... -
AnteD #2
Re: are there any guides to creating a dynamic menu from mysql data?
Well this is my db for dynamic menues....I've seen this stucture in many
books and articles....
menu_id INT
parent_id INT DEFAULT '0'
name VARCHAR(255) DEFAULT ''
description TEXT
location VARCHAR(255) DEFAULT ''
all keys are NOT NULL where menu_id is PrimaryKey and location is
UniqueKey...
Hope this helps.....
<Michael Vilain <vilain@spamcop.net>> wrote in message
news:vilain-F0D1F0.20232520062004@comcast.dca.giganews.com...page> In article <40d5e045@212.67.96.135>,
> "Wayne..." <wayne@secretwebdesign.com> wrote:
>> > I'd like to create a menu system thats dynamic in nature and pulls thewill> > id ,name, title etc from a mysql table so that when a page is added it>> > be automatically linked into the menu system.
> > are there any guides out there about this?
> > Thanks in advance.
> >
> > Wayne...
> Sounds like a SOP--simple matter of Programming. Try some basic PHP
> books that include MySQL. The menu would be built by a query, then
> displayed.
>
> --
> DeeDee, don't press that button! DeeDee! NO! Dee...
>
>
>
AnteD Guest
-
Duncan Austin #3
Re: are there any guides to creating a dynamic menu from mysql data?
Hi,
Check zend.com under [developers]->[code gallery]. They've got some good
ones
Duncan
On Mon, 21 Jun 2004 14:30:14 +0200, AnteD <ante{at]abstraktmedia[.}com>
wrote:
> Well this is my db for dynamic menues....I've seen this stucture in many
> books and articles....
>
> menu_id INT
> parent_id INT DEFAULT '0'
> name VARCHAR(255) DEFAULT ''
> description TEXT
> location VARCHAR(255) DEFAULT ''
>
> all keys are NOT NULL where menu_id is PrimaryKey and location is
> UniqueKey...
>
> Hope this helps.....
>
>
> <Michael Vilain <vilain@spamcop.net>> wrote in message
> news:vilain-F0D1F0.20232520062004@comcast.dca.giganews.com...> page>> In article <40d5e045@212.67.96.135>,
>> "Wayne..." <wayne@secretwebdesign.com> wrote:
>>>> > I'd like to create a menu system thats dynamic in nature and pulls the> will>> > id ,name, title etc from a mysql table so that when a page is added it>>>>> > be automatically linked into the menu system.
>> > are there any guides out there about this?
>> > Thanks in advance.
>> >
>> > Wayne...
>> Sounds like a SOP--simple matter of Programming. Try some basic PHP
>> books that include MySQL. The menu would be built by a query, then
>> displayed.
>>
>> --
>> DeeDee, don't press that button! DeeDee! NO! Dee...
>>
>>
>>
>
--
Duncan
Duncan Austin Guest
-
Wayne... #4
Re: are there any guides to creating a dynamic menu from mysql data?
thanks
Wayne...
Wayne... Guest



Reply With Quote

