Hi: everyone!
I have a search engine function in my website such as
after i hit submit button the information that I put in the ‘input’ will be a searching term in my database, and lastly will be display in the table. the code that i am using is
export function button1_click(event,$w) {
wixData.query(“drugdatabase”).contains(‘name’, $w(‘#input1’).value)
.find()
.then(res =>{
$w(‘#table1’).rows= res.items;
});
}
my question is after i get the result that show in the table… how can Link it to a page that i current have in my website ??
anyone has any idea ~??? Thanks in advance !!