Search found 4 matches
- Sat Dec 13, 2008 7:55 am
- Forum: PHP - Code
- Topic: Recursive PHP/MySQL list menu
- Replies: 6
- Views: 3990
Re: Recursive PHP/MySQL list menu
Thanks ever so much for this! I got it working. Was a missing $cms at line 25 that caused a fail but other than that it has produced what I wanted and I am very thankful to you. Need to make some kind of CSS styling for it now but coding a few to see what looks best. Am sure there's a few more peopl...
- Sat Dec 13, 2008 3:37 am
- Forum: PHP - Code
- Topic: Plzz help me with PHP
- Replies: 4
- Views: 460
Re: Plzz help me with PHP
You can use the mail() function to send posted email forms so long as you're on server that can use PHP (Linux). You haven't said what your hosting package is so I assume it is on LINUX in which case you can use PHP. Go to php.net web site and search mail function. You can read about it there and th...
- Sat Dec 13, 2008 2:33 am
- Forum: PHP - Code
- Topic: Recursive PHP/MySQL list menu
- Replies: 6
- Views: 3990
Re: Recursive PHP/MySQL list menu
Here is the code I am using to create a function that calls a function. I have looked at it until my eyes go cross but I cannot get it to return what I want. The data is in DB ready to go but it just won't go... Essentially the function calls itself. From the top it begins the function and during th...
- Fri Dec 12, 2008 4:22 pm
- Forum: PHP - Code
- Topic: Recursive PHP/MySQL list menu
- Replies: 6
- Views: 3990
Recursive PHP/MySQL list menu
Can someone solve my issue please? I want to produce this:- <ul> <li>Home</li> <li>About</li> <ul> <li>About sub menu</li> <ul> <li>Under that</li> etc etc etc </ul> </ul> </ul> A limitless recursive menu basically. I have my DB set up =>[ id,name,parent_id ] with parent_id linking to id and so fort...