Software Engineering - Third Module
Here is Software Engineering - Third Module (SQL) lecture . Below Attachement contain
- Slides for Software Engineering
Click Here to Download
Downlaod Lecture of APTECH ACCP PRO Course Batch of Aptech NN 1207G1..
<?php
$username = "your_name"; $password = "your_password"; $hostname = "localhost"; //connection to the database $dbhandle = mysql_connect($hostname, $username, $password) or die("Unable to connect to MySQL"); echo "Connected to MySQL<br>"; ?> |
<?php
//select a database to work with $selected = mysql_select_db("examples",$dbhandle) or die("Could not select examples"); ?> |