This topic is locked
[SOLVED]

 Just 10 records showed onmouseover

8/17/2011 1:37:32 AM
PHPRunner General questions
S
shoppy author

Hi,
When I hover my mouse over a field I get a popup screen (see picture below)with only 10 fields.

I like this pupop screen to show about 20 fields, how do I do this?

C
cgphp 8/17/2011

You mean 10 records not 10 fields. Open the yourdetailspagename_detailspreview.php file on your webserver and change this line:

$display_count=10;
S
shoppy author 8/17/2011

Thanks o so very much!
It looked a bit different but it works like a charm.



if ( $rowcount ) {

$rs=db_query($strSQL,$conn);

echo mlang_message("DETAILS_FOUND").":
<strong>".$rowcount."</strong>";

echo ( $rowcount > 20 ) ? ". Displaying first:
<strong>20</strong>.<br /><br />" : "<br /><br />";

echo "<table cellpadding=1 cellspacing=1 border=0 align=left
class=\"detailtable\"><tr>";

echo "<td><strong>Omschrijving</strong></td>";

echo "<td><strong>Document</strong></td>";

echo "<td><strong>Datum</strong></td>";

echo "</tr>";

while ($data = db_fetch_array($rs)) {

$recordsCounter++;

if ( $recordsCounter > 20 ) { break;
}