C# Database Connection
In this tutorials you’ll able to connect database(SQL) using C# asp.net Steps to connect sql server database using c#. net For more details visit at: www.mitindia.in
C# Database Connection Read More »
In this tutorials you’ll able to connect database(SQL) using C# asp.net Steps to connect sql server database using c#. net For more details visit at: www.mitindia.in
C# Database Connection Read More »
Database connections using PHP and MS Access 1. Display list of records from MS Access database to PHP web page. (for this example you need to create a DSN from control panel, to create DSN click here) <html> <body> <h1> Connecting to Ms Access using PHP </h1> <hr> <?php $conn=odbc_connect(‘acc_php’,”,”); if (!$conn) { exit(“Connection Failed: “
PHP Database connection Read More »
PHP Session Variables 1. Login page program using PHP and MySQL DB a) first create a html page as following. <html> <body > <form method=”post” action=”userLogin.php” > <table border=”1″ > <tr> <td> <B>User-Id</B> </td> <td><input type=”text” name=”userid”> </tr> <tr> <td><B>Password</B></td> <td><input name=”password” type=”password”></input></td> </tr> <tr> <td><input type=”submit” value=”Submit”> <td><input type=”reset” value=”Reset”> </tr> </table> </form> </body>
PHP-Login page and sessions Read More »
In this tutorials, you will be able to understand how form validation are done using php syntax. Step1 : Create a file called “Validation.php” and copy the following code and paste into it. <!DOCTYPE HTML> <html> <head> <style> .error {color: #FF00FF;} </style> </head> <body> <?php $nameErr = $emailErr = $genderErr = $websiteErr = “”; $name
PHP-Form validation Read More »
Here are some basic programs using PHP 1. Arithmetic operation program using PHP <?php $str=” Arithmetic operation”; $a=4; $b=5; $c=$a+$b; echo “Sum=”, $c; $c=$a-$b; echo “<br>Sub=”, $c; $c=$a*$b; echo “<br>Mul=”, $c; $c=$a/$b; echo “<br>Div=”, $c; ?> 2. PHP program to print person name and age. <?php $name=”John”; $age=20; echo “Person name=”, $name; echo “<br>Age=”, $age;
How to run PHP programs using WAMP server on Windows operating system? First, Download WAMP server from http://www.wampserver.com/en/ Here are the steps to install WAMP server on your PC and run your first PHP program. 1.Double click on WAMP server set up file 2.Click on Run 3. Click “Next” 4. Click on “Accept” 5. Click
install WAMP and RUN PHP program Read More »
PHP = Pre-processor Hypertext PHP, a server side scripting languages widely (nearly 82% of the worlds websites are developed using PHP!) used in developing dynamic and interactive webpages. Advantages of PHP ——Dynamic content. —Computational capability. —Database and file system access. —Network access (from the server only). —Built-in libraries and functions. —Known platform for execution (as opposed
SEO is a three letter acronym short for Search Engine Optimization.Search engine optimization about trying to rank higher in search engines. To rank higher you make changes to your website that make it easier for search engines to understand your content. Also, it can mean getting links from other websites. source: www.madebymarket.com/help/ads/what-does-seo–mean.html SEO Friendly code for your website
SEO friendly META Tags Read More »
1. Print 1-10 numbers using FOR loop program <html> <head> <title> Javascript looping program </title> </head> <body> <script language=”javascript”> var i document.write(“<h1>”+”FOR Looping program” +”</h1>”) for(i=1; i<=10; i++) { document.write(i+”<br>”) } </script> </body> </html> 2. WHILE Loop using Javascript <html> <head> <title> Javascript while loop program </title> </head> <body> <script language=”javascript”> var i=1 document.write(“<h1>”+”WHILE Loop
Javascript loop programs Read More »
Java Script is an interpreted, object-based scripting language, developed by Sun Micro systems and Netscape. JavaScript makes it easier to create interactive Web Pages. Common Gateway Interface was considered as the standard for processing the forms. It was time consuming process because form validation used to take place on the server side. JavaScript made the entire work easier by
Javascript programs Read More »
it’s a method that adds markup to text, no more, no less. It can be compared to a Rich Text File or Word Document, with the difference that HTML can be coded by hand. An HTML document (like any other document) consists of “header” or “meta” information. This tells a program (the web browser) what
Hyper Text Markup Language Read More »