0,1 secondi di ricerca su Google:"mysql error 1066" - nome/alias tabella non univoco
FROM
blomster_produkter <--table #1
INNER JOIN blomster_produkter ON <-table #2
non puoi unire una tabella a se stessa o riutilizzare lo stesso nome di tabella in un join, senza utilizzare un alias:
FROM blomster_produkter
INNER JOIN blomster_produkter AS someothername ON
^^^^^^^^^^^^^^^^^--- the alias
e quindi modificare i riferimenti alle tabelle secondo necessità nelle condizioni di unione.
Inoltre, tieni presente che sei completamente aperto agli attacchi sql injection . Divertiti ad avere il tuo server pwn3d.