DDmUSA Posted February 19, 2011 Share Posted February 19, 2011 I am in the process of learning MySQL and PHP. I have a real-world application that I would like to develop for someone using MySQL and PHP, provided I can end up with the necessary user interface for the application. The user will be launching a web browser to start the application. The application will be developed for two purposes: to record employee information (name, contact info, category of worker such as: cook, dishwasher, server, host) to record the hours worked by each worker for each day and then generate a report that can be sent to the accountant by email or fax Since the interaction will take place in a web browser, what are the possibilities as far as having customization for the text fields (controllable size of text field, larger than the form element), having start and end times with the colon symbol inserted automatically, to name a few. When a text field is inserted via HTML, the rectangle is rather small. Can the default sizes of form elements be enlarged? Quote Link to comment https://forums.phpfreaks.com/topic/228185-custom-ui-what-is-possible/ Share on other sites More sharing options...
kenrbnsn Posted February 19, 2011 Share Posted February 19, 2011 Any UI customization should be done with CSS and/or Javascript (although mostly CSS). See the CSS Zen Garden to see how the look & feel of a web site can be changed by just changing the CSS file loaded. Ken Quote Link to comment https://forums.phpfreaks.com/topic/228185-custom-ui-what-is-possible/#findComment-1176687 Share on other sites More sharing options...
DDmUSA Posted February 19, 2011 Author Share Posted February 19, 2011 I would specifically like to know what gets implemented to have a text field whereby the text box is a size I choose with a specific font to be used if so desired. Also, to have a field to input numbers for a time input for hours and minutes, with the colon symbol automatically appearing in the field once someone starts typing in this field. If I insert a drop-down selection using the HTML select element, the object on the screen is rather tiny. Can this appear larger when desired? How are these sorts of things accomplished? Quote Link to comment https://forums.phpfreaks.com/topic/228185-custom-ui-what-is-possible/#findComment-1176694 Share on other sites More sharing options...
kenrbnsn Posted February 19, 2011 Share Posted February 19, 2011 You need to learn CSS for all of those thing except for automatically inserting a colon in a time field. For that you would need Javascript. Ken Quote Link to comment https://forums.phpfreaks.com/topic/228185-custom-ui-what-is-possible/#findComment-1176696 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.