We are going to learn how to validate your forms using PHP and jQuery in both sides: client side (using javascript with jQuery) and server side (using PHP). It will be interesting to see how to use regular expressions to validate different kind of e-mails, passwords and more. Introduction …
In the old days, we depend a lot of on developers and programmers to help update the website, even when it’s just a minor one. Thanks to the CSS and it’s flexibility, styles can be extract independently away from the codes. Now, with some basic understanding of CSS, even a …
Introduction Today we are making a cool & simple login / registration system. It will give you the ability to easily create a member-only area on your site and provide an easy registration process. It is going to be PHP driven and store all the registrations into a MySQL database. …
Ok, so now you have “learned” …. wait should that be a single quote …. PHP and you are ready to really be able to start using it for something more than you can do with HTML. I will get into the use of single quotes vs double quotes, short …
Silent Features of Aqua-Robotics – Advanced level –How to make a Wireless robotics Course Material taught in a step-by-step manner It assumes no prior knowledge of robotics by the student Assimilates the existing engineering concepts of the Curriculum Designed to incorporate all Mechanical, Electrical and Programming aspects taught The …
“Robotics- Autonomous Robot Workshop” will be held from 15th to 17th December 2011 at Thakur College of Science and Commerce, as part of their Technical Festival -Saarang. We shall be doing Soldering Building the body of robot Learn electronics Learn Mechanical concepts Learn Advanced Programming logics, Complete Hands on approach …
CSS has introduced new transform properties. In this section we will learn one more new property known as “skew”. Skew property is usually used to give skewing effects in 3d. We will see an example which gives skew effect to an html element. Syntax for skew property is: transform:skew(30deg, 10deg); …
Cascading Style Sheets CSS is the key presentational technology that is used in website design. In this tutorial we will learn about the shadow effects, layering multiple shadows, text-shadow effects. CSS property “box-shadow” allows us to add an shadow effect to selected HTML element, whereas “text-shadow” allows us to add …
Here’s one more example in Html5 using CSS 3 which definitely proves that its fun to play with CSS. Following is an example of the text rotation using CSS property: For safari, chrome, etc: -webkit-transform: rotate(-30deg); For mozilla: -moz-transform: rotate(-30deg); For Opera: -o-transform: rotate(-30deg); For Linux: -khtml-transform: rotate(-30deg); For ie: …
In this part we will have a look through how to display text with rounded corners. Following is an example of the text with rounded corners using CSS property: For safari, chrome, etc: -webkit-border-top-left-radius: 50px; For mozilla: -moz-border-radius-topleft: 50px; For Opera: border-radius: 50px; For old Konqueror browsers: -khtml-border-radius: 50px; Code: …