Forum Moderators: open
SELECT * FROM parts
JOIN bom ON parts_idparts = idparts
LIMIT 250 Does exacly what I want, well, so far. Now I like to filter the data from 'parts' with a FORM.
I like to squeeze in the string:
WHERE
type LIKE '%{$_POST['such']}%' OR
description LIKE '%{$_POST['such']}%' OR
value LIKE '%{$_POST['such']}%' How I can use this?