Database search options

Hi Liran,

how about I make the result is going into a dynamic page. On this code

import wixData from 'wix-data';
$w.onReady(function () { 
});
export function searchButton_onClick() {   
  wixData.query('Member')
   .contains('name', $w('#input1').value)
   .find()
   .then(res => {   
      $w('#table1').rows = res.items;
    });
} 
 .then(res => { $w('#table1').rows = res.items; 

how can I make the result go into a dynamic page? thank you for the response :slight_smile: