IT Experts CentralIT Experts CentralIT Experts Central is an online community where IT professionals learn from experts in the Information Technology industry as well as interact, share information, and learn from each other. IT Experts Central provides in-depth technical articles, tut Articles
HTML Table
2007-06-03 15:36:00 Table of Contents History of HTML HTML Essentials Basic HTML Tags HTML Formatting HTML List HTML Table Tables Table consists of rows and columns. In HTML, it’s usually separated by rows (table row or tr) and then divided by columns (table data or td). (more…) Previous © Mark Marucot for IT Experts Central, 2007. | Permalink | No comment Add to del.icio.us Search blogs linking this post with Technorati Want more on these topics ? Browse the archive of posts filed under HTML. More About: Table , Html
HTML List
2007-06-03 15:31:00 Table of Contents History of HTML HTML Essentials Basic HTML Tags HTML Formatting HTML List HTML Table List HTML List displays items in readable manner. List can be unordered list or ordered list. (more…) Previous Next © Mark Marucot for IT Experts Central, 2007. | Permalink | No comment Add to del.icio.us Search blogs linking this post with Technorati Want more on these topics ? Browse the archive of posts filed under HTML. More About: Html
HTML Formatting
2007-06-03 15:20:00 Table of Contents History of HTML HTML Essentials Basic HTML Tags HTML Form atting HTML List HTML Table Format ting Since HTML becomes the standard language in web browsers, text formatting is introduced to make web pages appealing to the users. (more…) Previous Next © Mark Marucot for IT Experts Central, 2007. | Permalink | No comment Add to del.icio.us Search blogs linking this post with Technorati Want more on these topics ? Browse the archive of posts filed under HTML. More About: Html
Basic HTML Tags
2007-06-03 14:12:00 Table of Contents History of HTML HTML Essentials Basic HTML Tags HTML Formatting HTML List HTML Table Basic HTML Tags The most commonly used basic tags are headings, paragraph, anchor, image, hr, line breaks and blackquotes. (more…) Previous Next © Mark Marucot for IT Experts Central, 2007. | Permalink | No comment Add to del.icio.us Search blogs linking this post with Technorati Want more on these topics ? Browse the archive of posts filed under HTML. More About: Html
HTML Essentials
2007-06-03 13:44:00 Table of Contents History of HTML HTML Essential s Basic HTML Tags HTML Formatting HTML List HTML Table HTML Essentials The basic HTML structure is consists of the tags <html> , <head>, <title> and <body>. PLAIN TEXT HTML: <html> <head> <title> Page Title </title> </head> <body> </body> </html> (more…) Previous Next © Mark Marucot for IT Experts Central, 2007. | Permalink | No comment Add to del.icio.us Search blogs linking this post with Technorati Want more on these topics ? Browse the archive of posts filed under HTML. More About: Html
Deleting Records Using DELETE Statement
2007-05-31 16:55:00 Table of Contents SQL Overview Introduction to SQL SQL Select Stat ements Creating New Record s in INSERT Statement Updating Records using UPDATE Statement Deleting Records Using DELETE Statement DELETE Statement The DELETE statement is use to delete records based on the conditions specified. Syntax PLAIN TEXT SQL: delete from [tablename] where [value1] [operator] [value2] (more…) Previous © Mark Marucot for IT Experts Central, 2007. | Permalink | No comment Add to del.icio.us Search blogs linking this post with Technorati Want more on these topics ? Browse the archive of posts filed under Database. More About: Delete
Updating Records using UPDATE Statement
2007-05-31 16:41:00 Table of Contents SQL Overview Introduction to SQL SQL Select Stat ements Creating New Record s in INSERT Statement Updating Records using UPDATE Statement Deleting Records Using DELETE Statement UPDATE Statement The UPDATE Statement is use to update records in the table. Syntax PLAIN TEXT SQL: update [tablename] set [column1] = [values1], [column2] = [values2], … where [column] [operator] [value] (more…) Previous Next © Mark Marucot for IT Experts Central, 2007. | Permalink | No comment Add to del.icio.us Search blogs linking this post with Technorati Want more on these topics ? Browse the archive of posts filed under Database. More About: Update
Creating New Records in INSERT Statement
2007-05-31 06:55:00 Table of Contents SQL Overview Introduction to SQL SQL Select Stat ements Creating New Record s in INSERT Statement Updating Records using UPDATE Statement Deleting Records Using DELETE Statement INSERT Statement The INSERT Statement is use to create records in the table. Syntax PLAIN TEXT SQL: insert into [tablename] ([column1], [column2], …) values ([value1], [value2], … ) (more…) Previous Next © Mark Marucot fo... More About: Eating
SQL Select Statements
2007-05-27 16:04:00 Table of Contents SQL Overview SQL Basics SQL Sele c t Stat ements Select Statement s Select Statements or SQL Queries are used to retrieve records from a table. Syntax of Basic Select Statement PLAIN TEXT SQL: SELECT [column1], [column2], … FROM [TABLE] (more…) Previous
Introduction to SQL
2007-05-27 15:57:00 Table of Contents SQL Overview Intro duction to SQL SQL Select Statements Creating New Records in INSERT Statement Updating Records using UPDATE Statement Deleting Records Using DELETE Statement Database A database consists of one or more tables related to each other. A table is identified by a name. Each table contains one or more columns. (more…) Previous Next © Mark Marucot for IT Experts Central, 2007. | Permalink | No comment Add to del.icio.us Search blogs linking this post with Technorati Want more on these topics ? Browse the archive of posts filed under Database.
SQL Basics
2007-05-27 15:57:00 Table of Contents SQL Overview SQL Basics SQL Select Statements Database A database consists of one or more tables related to each other. A table is identified by a name. Each table contains one or more columns. (more…) Previous Next
SQL Overview
2007-05-27 15:35:00 Table of Contents SQL Overview SQL Basics SQL Select Statements What is SQL? SQL, stands for Standard Query Language, is a computer language used to create, retrieve, update and delete data from the relational database management system. It has been standardized by ANSI (American National Standards Institute) and ISO (International Organization for Standardization). SQL is used in Oracle, MySQL, DB2, Informix, MS SQL Server and etc. (more…) Next
Oracle’s Campaign of Utilizing Oracle Database in PHP Web Applications
2007-05-27 09:34:00 This May 2007, Oracle ’s PHP Developer Center released new versions of PHP software and updated PHP documents. This shows Oracle’s campaign in using Oracle database in one of the popular FOSS scripting language, PHP. The Underground PHP Oracle Manual, Release 1.4 The book is designed to bridge the gap between the many PHP and the many Oracle texts available. This book is not a complete PHP or Oracle guide. This new release includes lots of updates, including information on the PHP PDO_OCI extension, testing the OCI8 extension, tracing OCI8 internals, and comparison of old and new OCI8 function names. Zend Core for Oracle 2.0 Zend Core for Oracle Release 2.0 is a pre-built stack for PHP developers that makes it easier for them to develop and deploy applications on a robust, scalable and reliable infrastructure. This includes PHP 5.2.1, the refactored OCI8 driver, Oracle Instant Client, and an optional Apache HTTP Server 2.2.2; it’s also supported on Oracle Enterpris... More About: Applications , Campaign , Database , Application
Underground PHP Oracle Manual
2007-05-27 05:02:00 The book is designed to bridge the gap between the many PHP and the many Oracle texts available. This book is not a complete PHP or Oracle guide. It is assumed that you already have basic PHP and SQL knowledge and want best practices in using PHP against an Oracle database. (more…) More About: Underground , Round , Manu , Under
Zend Core for Oracle - A PHP and Oracle Web Collaboration
2007-05-27 04:48:00 Last 2005, Oracle and Zend Technologies entered into a partnership to develop an integrated solutions that provides database-driven website using PHP and Oracle as it’s database. Zend Core for Oracle is a pre-built stack for PHP developers that makes it easier for them to develop and deploy applications on a robust, scalable and reliable infrastructure. The product includes tight integration with Oracle Database client libraries, and native support for XML and Web services, while also supporting increased adoption of service-oriented architecture (SOA). It delivers a rapid development and deployment foundation for database-driven applications. (more…) More About: Collaboration , Coll
Microsoft - Novell Strategy on SUSE Linux
2007-05-26 19:42:00 Last November 2006, Microsoft and Novel made a deal that will allow Microsoft to distribute SUSE Linux Enterprise Server1. The deal also provides protection of Novell SUSE customers against patent litigation from Microsoft. There is a thought that Microsoft will file charges on Linux patent violations because a question is left when Brad Smith , Microsoft’s Senior Vice President and general counsel, declined to comment if Red Hat Linux violated Microsoft’s intellectual property. (more…) http://www.infoworld.com/article/06/11/02 /HNmsnovelllinux_1.html [↩] More About: Strategy , Trat
Linux Foundation’s Portress of Defense Against Microsoft
2007-05-26 17:37:00 Last week, Micro soft filed charges against Free Open Source Software (FOSS) which violated 235 patent violations. Linux violated 107 patents, 42 from Linux kernel and 65 on graphical user interface. Linux Foundation’s membership comprises of numerous companies, organization and individuals which contributes in success of Linux development. Jim Zemlin, Executive Director of Linux Foundation fires back to protect Linux developers and users1. (more…) http://www.businessweek.com/technology/co ntent/may2007/tc20070525_325967.htm?chan= top+news_top+news+index_technology [↩] More About: Defense , Ense
FOSS Violates 235 Patents According to Microsoft
2007-05-26 17:05:00 In an interview with Fortune magazine, Brad Smith, Micro soft ’s general counsel, and Horacio Gutierrez, MS’s Vice President of Intellectual Property and Licensing, said open source software, including Linux violates 235 Microsoft patents. “This is not a case of some accidental, unknowing infringement. …There is an overwhelming number of patents being infringed,” Gutierrez said. Here is the statistics of open source software violations1: Linux kernel violated 42 patents Linux graphical user interfaces violates - essentially, the way design elements like menus and toolbars are set up - run afoul of another 65 OpenOffice application suite violates 45 patents E-mail programs infringe 15 assorted FOSS programs allegedly transgress 68 http://money.cnn.com/magazines/fortune/fo rtune_archive/2007/05/28/100033867/index. htm [↩] More About: Patents , Late , Patent
Oracle + Linux = Oracle Unbreakable Linux
2007-05-26 14:11:00 There are many humors last year about Oracle distributing Linux own version to its clients such as Oracle - Ubuntu tie-up and Oracle’s plan in redistributing Red Hat Linux. Now the concrete plan has been manifested and Oracle launched Oracle Unbreakable Linux. (more…) More About: Brea
Interview With David Korn
2007-05-26 07:11:00 David Korn was featured here as the IT People of the Month. He is the author of the famous Korn Shell for Unix. In an earlier article post in Slashdot asking David Korn about ksh and many other inquiries. A month later, David Korn himself answers the questions. Here it is. (more…) More About: Interview , David , Davi
IT People of the Month:David Korn
2007-05-26 06:28:00 David Korn is the man behind the Korn Shell, a command line shell interface for UNIX systems. He also created UWIN, an x/Open library for Windows similar to Cygwin. He co-developed sfio, a library for managing I/O streams, together with Kiem-Phong Vo. He joined Bell Labs and AT&T Research. (more…) More About: People , David , Davi , Month
Ten IT Greatest People
2007-05-26 05:51:00 People around the world enjoys the benefits we got from Information Technology. It can be in business, work, entertainment and personal use. We cannot enjoy the current technology advancement without the people behind it. Computer Weekly listed the top 10 greatest people in IT. Here they are: (more…) More About: People , Greatest
Debugging Using Eclipse
2007-05-25 16:04:00 Eclipse is an integrated development environment (IDE) that provides workspace management, code and debug application. Eclipse is known to many Java developers because of its rich features that make their programming task easier. IBM Developer Works discussed about debugging your code using Eclipse. Find out how to use the built-in debugging features in the Eclipse Platform for debugging software projects. Debug ging is something programmers can’t avoid. There are many ways to go about it, but it essentially comes down to finding the code responsible for a bug. For example, one of the most common errors in Linux® applications is known as a segmentation fault. This occurs when a program attempts to access memory not allocated to it and terminates with a segmentation violation. To fix this kind of error, you need to find the line of code that triggers the behavior. Once the line of code in question has been found, it is also useful to know the context in which the error occur... More About: Eclipse , Bugg , Clipse
Technorati Favorite Exchange
2007-05-20 15:14:00 Doshdosh suggested Technorati Favorite Exchange to get into Technorati’s Top 100 Favorite Blogs. This exchange is open to anyone who owns a blog. As long as your blog is not full of spam or copyrighted material, you’re free to participate. Here are the steps you can take to get started: Click here to Add me to your Technorati Favorites Come Back to this Post and Leave a Comment that you have Added me. Use your own Technorati Fave link in the comment so I know where to go. (i.e. http://technorati.com/faves?sub=addfavbtn &add=http://www.yourdomain.com) I will go through my comments and then add you to my Technorati Faves list as well. ***Start Copying Here:*** Technorati Faves Train created by: Gary Lee Here are the rules: 1) Write a short introduction paragraph about what how you found the list and include a link to the blog that referred you to the list. 2) COPY the Rules and ENTIRE List below and post it to your blog. To avoid duplicate content and increase the amou... More About: Nora , Chang
By the Power of 7-7-7, No Script for the Day
2007-05-20 13:15:00 Last time on the Naked CSS day, hundreds of websites removed their CSS. This made them loose their design. But on the 7-7-7 day or July 7, 2007, the Script less Day, will you remove all client-side scripting such as javascript and vbscript in your website? Here is their concept. (more…) More About: Power , The D
Best Database Management System
2007-05-20 08:10:00 While searching for good references on the best programming languages, I found Amazon Unspun that provides methods for community collaboration on the Web to develop consensus ranking. I created a list to know what is the Best Database Mana gement System (more…) More About: Taba
Optimizing Rails on Oracle
2007-05-20 07:42:00 Luca Mearelli of Spazidigitali, published an article in Oracle Technology Network about Tips for Opti mizing Rail s on Oracle . As you know Ruby has been the chosen as one of the the best programming language by Amazon Unspun, the Big 3 Search Engines and by CPU Benchmarks. (more…)
Best Programming Language By CPU Benchmarks
2007-05-19 13:54:00 Here is another view of looking for the Best Program ming Language . This time we will look for the benchmark results conducted by The Computer Language Benchmarks Game1. (more…) http://shootout.alioth.debian.org/gp4/ind ex.php [↩] More About: Mark , Marks
Best Programming Language by Search Engine Search Result
2007-05-19 13:12:00 We discussed the Best Programming Language s rated in Amazon Unspun last time. This time let’s check what does the Big 3 Search Engine s says about it. All programming languages that will be mentioned in the first page result with the keyword “best programming language” will be included here. We didn’t check the pages to look for the programming language discuss. If the programming language is not mentioned the in search results then it won’t be listed here to make it simple. (more…) More About: Search Engine
In Pursuit of the Best Programming Languages
More articles from this author:2007-05-19 12:08:00 In my years of experience in software development, I wandered around which is the best programming language. I’d been involved in Oracle based application but there are programming languages out there that excels in their fields. (more…) More About: Programming , Languages , Program , Programming Languages , Ming 1, 2, 3, 4 |



