dunque.. la guida parla in riferimento al mamboot search di questa query
SELECT name AS title,".
"'' AS created, misc AS text, 'Contact' AS section,".
"CONCAT( 'index.php?option=com_content&task=view&id=',id ) AS href, 2 AS browsernav".
"FROM #__contact_details AS a".
"INNER JOIN #__categories AS b ON b.id=a.catid AND b.access <= '$my->gid'".
"LEFT JOIN #__sections AS u ON u.id = a.sectionid".
"WHERE name LIKE '%$text% OR misc LIKE '%$text%'".
"AND published = '1' ".
"ORDER BY name");
e poi dice che gli servono i parametri
-title
-created
-section (mi è venuto un dubbio dopo.. ma l'id della sezione o il nome?? )
-href
-browsernav
x cui.. mooooooolto approssimativamente la query potrebbe essere una cosa simile
SELECT C.title, C.created, S.title, CONCAT('index.php?option=com_content&task=view&id=',C.id ), 2
FROM jos_content C, jos_sections S
WHERE C.sectionid = S.id
AND C.title LIKE '%$text' OR misc LIKE '%$text'
dove appunto al posto del C.title, dopo l'AND, devo fargli leggere il form, cioè quello che avevo chiamato $sceltaFiltro
mentre al posto di text, che dovrebbe essere quello che è stato dato come stringa, CREDO $searchword
grande capo, cm'è???