I usually use CamelCase for PHP coding, but when it come to input fields name and table (DB) fields name... what should I use?
For example:
<input type="text" name="streetName" />
<input type="text" name="houseNo" />
or ...
<input type="text" name="StreetName" />
<input type="text" name="HouseNo" />
Usually I name the input fields the same as database table fields name.