PROGRAM | COURSE | START DATE | TIME |
---|---|---|---|
Microsoft Office | Excel 2010 Level 2 | 1/28/2012 | SAT / SUN 10am-2pm |
Database Administration Bundle package | Microsoft Database Administration and Development | 1/28/2012 | SAT / SUN 10am-2pm |
CompTia | NETWORK+ | 1/30/2012 | MON / WED 6.30pm-10pm |
Graphics Design | PHOTOSHOP CS5 | 1/31/2012 | TUES / THURS 6.30pm-10pm |
Microsoft Office | Excel 2010 Level 3 | 2/4/2012 | SAT / SUN 10am-2pm |
Programmer | C++ | 2/7/2012 | TUES / THURs 6.30pm-10pm |
Microsoft Office | Outlook 2010 Lvl 1 | 2/11/2012 | SAT / SUN 10am-2pm |
Microsoft Office | Outlook 2010 Lvl 2 | 2/18/2012 | SAT / SUN 10am-2pm |
Web Design | FLASH CS5 | 2/21/2012 | TUES / THURS 10am-2pm |
Cisco CCNP | IP Routing | 2/25/2012 | SAT / SUN 2pm-6pm |
Web Design | Dreamweaver | 2/25/2012 | SAT / SUN 2pm-6pm |
Microsoft Office | Outlook 2010 Lvl 3 | 2/25/2012 | SAT / SUN @10.AM |
CERTIFIED ETHICAL HACKER | CEH – Boot camp | 2/27/2012 | MON thru FRI 10am-6pm |
ABCO Technology - a computer training institute provides job training for all types of applications and software used in the real-world job environment. ABCO’s graduates are prepared to take on the challenges they will face in today’s job market. We endeavor to make our students employable in the field of IT as office managers, technicians, network administrators, developers, and webmasters. Our desire is to create value, earn trust, deliver results, exceed expectations, and empower people.
Tuesday, January 24, 2012
ABCO Technology Classes Starting in January and February. Call (310) 216-3067 for special prices!
Wednesday, January 18, 2012
ABCO Technology - New Classes for 2012
New in demand classes for 2012
It’s the start of a new year and employers are on the hunt for new recruits. Employer’s needs are the cornerstone of our training programs here at AB CO Technology. After numerous and lengthy discussions with Southern California companies, our vocational school has constructed a curriculum of in demand courses. These classes are scheduled for the 2012 calendar year. These courses included in the curriculum are as follows:
1. Mobile Application Programing and Development for Iphone and Adnroid Operating systems.
2. CISSP / Certified internet Security Specialist Professional
3. CEH / Certified Ethical Hacker
4. Cloud Computing
5. Computer Forensics
6. VMware based Infrastructure
7. PHP & MySQL database implementation
8. Oracle Database Application Infrastructure
Employers are looking for qualified candidates for these positions. ABCO Technology has developed an intensive and tailored courseware; we have experienced and certified instructors with years of experience in their respective fields. Our instructors are committed to their students not solely for preparing students in passing certification exams, but also through quality hands on learning experience preparing our students for employment. Take initiative by taking the bold step in making the decision to change your life. Please contact ABCO Technology to begin your new career.
Check Us Out We Are All Over The Web!!
Check Out Our Website
Saturday, January 14, 2012
How to connect to a MySQL Database Using PHP - ABCO Technology
ABCO Technology explains, I'd like to explain to our students on creating a config file, which is the first part of creating any application. I'll start from phpMyadmin. Connect to the phpmyadmin interface for MySQL and create a database along with the user. For this purpose we are going to assume that we are creating a blogtastic database for a web blog, and a user named blog_usr, with a password "password". You will obviously have your own credentials, If the MySQL database and the PHP Code is on the same server, then your host will be "localhost", or you will have to type the name or IP address of your database server.
After the database is created, using a simple HTML editor, create a config file, in which you will create variables for your site. These are variables that are going to be used throughout the site, and hence must be defined in the config.php file. This also makes the website more scalable, as in the future, if you change the server or the database, you will have to only make the changes in one place.
The most important point to remember is the fact that on every page of your site, where you need to retrieve information from the database, or send information to the database, it is required to connect to the database at the very top.
So here's a sample config.php file, that you must prepare at the start of every application. Once the file is prepared, include this file at the top of every page using the include("config.php") or require ("config.php") function. You may watch a video of this file at the following link: "ABCO Technology presents how to connect to MySQL from PHP"
SAMPLE CONFIG.PHP File:
<?php
//define the variables for the database
$dbhost = "localhost";
$dbuser = "root";
$dbpassword = "password";
$dbdatabase = "blogtastic";
//Other site related variables
$config_sitename = "The Ultimate Blog";
$config_baseurl = "http://localhost/projects/blogtastic";
$config_author = "ABCO Technology";
//functions to connect to the database
$db = mysql_connect($dbhost, $dbuser, $dbpassword); //connects to the database
if(!db){
echo "Not Connected to the database";
}
$dbselect = mysql_select_db($dbdatabase,$db); //selects the database
?>
Please feel free to write comments so we can get a proper feedback. For more information please contact us at ABCO Technology at (310) 216-3067. This blog is part of the Advanced PHP Course taught at ABCO Technology. Visit our website for more details.
After the database is created, using a simple HTML editor, create a config file, in which you will create variables for your site. These are variables that are going to be used throughout the site, and hence must be defined in the config.php file. This also makes the website more scalable, as in the future, if you change the server or the database, you will have to only make the changes in one place.
The most important point to remember is the fact that on every page of your site, where you need to retrieve information from the database, or send information to the database, it is required to connect to the database at the very top.
So here's a sample config.php file, that you must prepare at the start of every application. Once the file is prepared, include this file at the top of every page using the include("config.php") or require ("config.php") function. You may watch a video of this file at the following link: "ABCO Technology presents how to connect to MySQL from PHP"
SAMPLE CONFIG.PHP File:
<?php
//define the variables for the database
$dbhost = "localhost";
$dbuser = "root";
$dbpassword = "password";
$dbdatabase = "blogtastic";
//Other site related variables
$config_sitename = "The Ultimate Blog";
$config_baseurl = "http://localhost/projects/blogtastic";
$config_author = "ABCO Technology";
//functions to connect to the database
$db = mysql_connect($dbhost, $dbuser, $dbpassword); //connects to the database
if(!db){
echo "Not Connected to the database";
}
$dbselect = mysql_select_db($dbdatabase,$db); //selects the database
?>
Please feel free to write comments so we can get a proper feedback. For more information please contact us at ABCO Technology at (310) 216-3067. This blog is part of the Advanced PHP Course taught at ABCO Technology. Visit our website for more details.
Check Us Out We Are All Over The Web!!
Check Out Our Website
Subscribe to:
Posts (Atom)