Eiluned wrote: > http://www.phoenixfyre.net/EilsWalls/request.html > > Is something wrong with the code? Thanks in advance!
In your form, you have this line: <.input type="hidden" name="required" value="recipient,name,email,type"> You're telling the form to require that these fields be filled out, recipient, name, email and type, only you don't have a field named type anywhere in your form, so it's never filled out. If you remove that field from the required, then it should work, change the line to be this: <.input type="hidden" name="required" value="recipient,name,email"> alice ttlg http://idiotbox.populli.net/ ~ * ~ * ~ ~ * ~ * ~ ~ * ~ * ~ ~ * ~ * ~ ~ * ~ * ~ "Don't let the bastards grind you down." -- Joseph Stilwell, translation of "Illegitimati non carborundum" _______________________________________________ Fanficwebdesign mailing list [EMAIL PROTECTED] http://populli.net/mailman/listinfo/fanficwebdesign_populli.net
