"need rotating div display, preferably in PHP"
need a rotating div display, similar to rotating slideshow - preferably in PHP, since will interface with database. see http://www.cshlaw.com/cai/ - upper right is [a] a photo, next to it is a caption, below it is [c] the name of the person associated with the photo [will always be an attorney's photo], [d] a Practice Area associated with that person. Each field ultimately i want to be a record in a table to populate that UPPER RIGHT div area. here's the code of the page around that area [by the way, here's the id of the DIV: <div id="att_named_box">]:
BEGINNING OF CODE, with a extra added for context
<div id="top_nav_line"><a href="contact-us.asp">Contact Us</a> | <a href="subscribe.asp">Subscribe</a> | <a href="search.asp">Search</a> </div>
{***** CRITICAL code begins after the right bracket *****}
<div id="att_named_box">
<a href="attorney-detail.asp?pageTitle=AttorneyName&id=94">
<img src="images/trishhholland.suprlwyr.jpg" alt="Patricia L. Holland" width="82" height="101" border="0" align="left" /></a>
<p>Attorneys named to North Carolina Super Lawyers List</p><br />
<span class="att_name">
<a href="attorney-detail.asp?pageTitle=AttorneyName&id=94">Patricia L. Holland</a></span><br />
<span class="att_spec">Employment & Labor Law</span></div>
{***** end of CRITICAL code *****}
<div id="menu_box" style="top: 190px;">
<table border=0 cellpadding=0 cellspacing=0>
<tr>
it is within that DIV [<div id="att_named_box">] that i want to be able to display from a table: attyPhoto, attyCaption, attyName, attyPracticeArea. remember, ever 10, 15, x-seconds it needs to read another record, display inside that DIV area.
i notice js and PHP work wierd together; partial cooperation but having trouble putting PHP script into a js loop. HELP?