Jump to content

shoutbox scroll box


onthespot

Recommended Posts

Hello. I have been creating a shoutbox. And have it all working, except I need to make the whole thing display in a scroll box, so it doesnt just go on and on down the page, does anyone have any idea how I do this?

 

This is my code....

 

			echo "<table cellspacing=\"1\">";
	if(($count % 2) != 0)
	{
			echo "<p class='odd'>";
			echo "<tr><td width=\"70\">$dtime</td>";
			echo "<td width=\"100\">$shouter_name</td>";
			echo "<td>$shout_content";
			echo "</td></tr>";
			echo "</p>";

	}
	else
	{
			echo "<p class='even'>";
			echo "<tr><td width=\"70\">$dtime</td>";
			echo "<td width=\"100\">$shouter_name</td>";
			echo "<td>$shout_content";
			echo "</td></tr>";
			echo "</p>";

	}
	$count++;
	        echo "</table>";

 

Of course that Is only a snippet, but thats the only part that will be of significance for this question. Thankyou

Link to comment
https://forums.phpfreaks.com/topic/171814-shoutbox-scroll-box/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.