the symfony form is,
nation =>new sfWidgetFormChoice(array( choices => NationPeer::getAllNation())),
township =>new sfWidgetFormChoice(array( choices => TownshipPeer::getAllTownship())),
On selecting the nation (like India) it should populate township(with the township within India). I Dont want to use Javascripts!
I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...