Sessions in php
Sessions used to store information on server. Session variables are used to store the details in server. Can be store unlimited amount of data. Once a connection made with server, all data like, input field information, etc will be stored in server. Once user logged out, or browser closed otherwise connection lost, sessionĀ will be…
How to get Php configuration information
To get the configuration details(like php version, host details, mysql details) use the following function: How to get the installed php version ? phpinfo();
How to write responsive styles in css?
To make website responsive in all device , include following meta tag in header section: <meta name=”viewport” content=”width=device-width”> Then include media queries in stylesheet and add responsive styles there: examples: @media only screen and (max-width: 767px) and (min-width: 480px){ } for more details: http://www.howtofindit.in/responsive-style-media-query-in-stylesheet/
Grid system in Bootstrap
Grid system is the main feature of bootstrap. we can divide the container into 12 sections and use those section based on our needs(based on the width of each section in our website design. there 4 classes in bootstrap to use this feature: xs: extra small for mobile device width sm: small for tablets. md…
what is bootstrap?
bootstrap is a html – css framework mainly used for making responsive websites. Bootstrap have some predefined classes, using those classes we can make the website responsive to all device easily, no need to write separate styles for small devices. Newest version of bootstrap is bootstrap 4. contains some more classes. Main properties of bootstrap…