yes, that's an easy task.
but I suggest you improve your database design. is there really max. one howto for each mod? if so, you can put it into the same table as the mod, just add a field for it.
if this is an 1:n relation, use a foreign key for pointing from the howto to the mod table. i.e., give the howtos an own primary key (auto-increment key) and add a column "id_mod" which contains the corresponding mod's id. this is called a "foreign key".
for example:
table mods:
id, text
table howtos:
id, id_mod, text
you could read some articles on database modelling in phpbuilder's articles section, too.
hth!