I was converting old asp files to php.

But I'm stuck at this point.

I'm looking for a triple combo listboxes where one has "book" the other "chapter" and the third "verse". The book is populated by a database table. Once book is selected then chapter is populated and then verse.

Any tutorial related to this?

Tutorial, umm..not sure.. But it can be done using ajax.. In javascript, it can be done this way.
Populate 1st dropdown from the database, have an onchange event for the dropdown. Onchange, submit the page. On submit, you can access the value of 1st dropdown, Eg. $value = $_POST['dropdown1']; Then populate the 2nd dropdown using $value as the condition. Do the same with the 3rd one.

Cheers,
Naveen

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.