Hi Ray,
I’m still looking for a way to create tables but allow users to set the number of rows displayed. I found a script designed to allow the user to do just that. I tried to make it work with the table created from the webassist aps but I'm not a programmer and could not figure it out. You on the other hand could take a look and know within a minute if you could integrate it into your work.
If it can be done please let me know the cost to make this work.
Here is a link to the site where he has a demo. https://makitweb.com/change-number-rows-show-in-the-pagination-using-php/
It is really just this section that I am looking for:
<div class="divnum_rows">
<span class="paginationtextfield">Number of rows:</span>
<select id="num_rows" name="num_rows">
<?php
$numrows_arr = array("5","10","25","50","100","250");
foreach($numrows_arr as $nrow){
if(isset($_POST['num_rows']) && $_POST['num_rows'] == $nrow){
echo '<option value="'.$nrow.'" selected="selected">'.$nrow.'</option>';
}else{
echo '<option value="'.$nrow.'">'.$nrow.'</option>';
}
}
?>
</select>
</div>
On another note you used to have a number of video tutorials but I believe they were in Flash. It’s not that difficult to convert from Flash to MP4. If you have a link to these old videos I would be happy to convert them for you and you could put them up on Youtube.
Brian