You probably very familiar with the orange icon in the top right corner on this site, we usually called it as RSS feed. That’s why, we should know more about RSS since the RSS technology become more popular in the world of blogging or internet. On this article, We’ll show you the list of FAQ about RSS (Really Simple Syndication) feed just for the global issue, here we goes :
1. What is RSS
RSS is a data format used for providing users with frequently updated content such as blog entries, news headlines, and podcasts in a standardized format. An RSS document (which is called a “feed”, “web feed”, or “news feed”) contains either a summary of content from an associated web site or the full text version. RSS makes it possible for people to keep up with web sites in an automated manner that can be piped into special programs or filtered displays.
In a nutshell, you use RSS to syndicate or subscribe to the feed of a website, blog or almost any media content online (not just articles, it can be music, video or almost any digital media). By syndicating you subscribe to the feed of the site which means you do not have to go visit the website to read the latest content. Instead you use feed reading software or a website to read the latest articles.
So, did you get some understanding about RSS feed? Subscribe for faqlist.net RSS feed to start get your new experience (You’ll find the big orange icon in the top right corner area on this site).
2. Why should I use RSS
The benefit of RSS for web surfers is the aggregation of content from multiple web sources will be bundled in one place. Instead of going to each of your favorite sites individually you can collect all the feeds from multiple sites. So, the syndication process will reduce amount of time and makes more efficient way to get the latest updated content from your favorite sites.
For website owner RSS feed could be one of the most favorite tools to evaluate your content fans (readers). It can be evaluated using subscription process through email or third party website that provides feed services (for example. Feedburner.com that provide many of statistical features for evaluating your site).
Well, can you mention some of RSS feed advantages on your own opinion?
That’s just a simple web form template (mostly generated by HTML code). We could render it using HTML input tag and create some column using HTML table tag for simple and fastest way. But maybe you wanna play with some of style sheet code using CSS. Since you’ll create web form template using CSS (well known as tabless method), you should know more about CSS styling concept that’s very sensitive rendering style depends on the browser (cross browser standard rendering issue). You could learn some of the CSS material in CSSPlay.co.uk or W3Schools.
On this article, we’ll explain about how to create the above web form template picture using ExtJs version 2.1. The first step, we’ll just create a simple HTML template that will be looks like this:
<html>
<head>
<title>Dynamic Web Forms built with ExtJs 2.1</title>
<!--
Include All the ExtJs Library Resource HERE
(CSS and Javascript files)
-->
</head>
<body>
<h1>Web Forms built with ExtJs 2.1 - DOM Injection</h1>
<div id="elform_columnstyle"
style="float: left; border: 1px solid; padding: 10px; margin: 5px;">
</div>
<div id="elform_injectstyle"
style="float: left; border: 1px solid; padding: 10px; margin: 5px;">
</div>
</body>
</html>
We’ll create javascript code based on ExtJs library to implement the example web form template looks like in the picture above. I’ll show you how to create the example web form using Column Layout method and using DOM Injection method.
On this article, it will show you step by step how to integrate CodeIgniter PHP Framework and ExtJs Javascript library. We’ll start it for CodeIgniter configuration before we can integrate it with ExtJs. Below is the CodeIgniter configuration steps :
Create directory on your web root directory, we named it as “ci-ext” (Assume that your web root directory is in C:\xampp\htdocs that’s why your directory path should be C:\xampp\htdocs\ci-ext).
We assume that you already have the latest CodeIgniter distribution file (We’ll use CodeIgniter version 1.6.3 for now). You can download it here: CodeIgniter Download
Edit file that located at C:\xampp\htdocs\ci-ext\system\application\config\config.php
Make sure that base_url configuration is appropriate depends on your web server settings.
Assume that we just do it in local server, that’s why you just write the configuration as follow :
$config['base_url'] = “http://localhost/ci-ext/”;
For the other configuration options, you could read the manual entries guide in the code.
Whoolaa… Your CodeIgniter instalation was successful (You’ll see the “Welcome message”)
Maybe you could share what’s your experience about code igniter installation, it’s pretty easier right?
Before we start to do some coding, we’ll do some instructions here :
Actually the default page was routed to the “welcome” controller, since the routes.php (located in C:\xampp\htdocs\ci-ext\system\application\config\routes.php) configured as that way.
We’ll create new configuration route to “C_login” controller. That’s why we should edit the route configuration value to “C_login“, besides that we also should create 3 files that will describe as follow :
file M_login.php located at : C:\xampp\htdocs\ci-ext\system\application\models
file V_login.php located at : C:\xampp\htdocs\ci-ext\system\application\views
file C_login.php located at : C:\xampp\htdocs\ci-ext\system\application\controllers
Let’s start these challenging part…
Here’s the detail code for every single file describe above : Read more…
You may interested about sequence number that appear in your computer address network configuration, email header, etc. For example, it’s usually configured as follow: 129.23.240.33 . The configuration number divide by dot that each separated number can be 0-255 numeric value or equal as 8 bit binary values.
In the computer major, we usually called it as IP address . The simple reason why our computer connected to the internet it’s because an IP address is the basic numerical code for designing network configuration. Through this configuration each computer can communicate to each others.
Since it has been connected on Local area Network (LAN) or internet, there’s some header information that sent by computer through the network to inform about our request to the destination computer. One of the header information that was already sent by our computer is an IP Address. It’s mean that they could track our visit, monitoring what we do on the internet, and many more.
Take care of your activity through computer network, it could be someone was watching you there.
Here’s the awesome web based software, to track an IP Address. You can try to track the IP Address by fill up the form (change the textbox value to your desired IP Address, then just click "track").
You may also wondering and keep had some question on your mind about how to manipulating data in access database using simple, fastest, and efficient way. Since Microsoft .NET architecture provides more flexibility and complex structured for everything programming problems. We had try some simplest way how to do that, it’s actually very easy and customizable component class that generated from data source creation wizard in Visual Studio .NET. We’ll discussed this topic using C# programming language.
Assume that we had created Ms Access database file that just had 1 table. The table was named as “tb_user” that have 4 column / field. Detail column specification already shown in the right picture here >>.
We should create new project in Visual Studio .NET using Visual C# Windows Form Application. Since we had main form activated on the development area, we could “Add New Data Source” to our project. You can find the selection menu as describe in the picture below.
When it Clicked, it would be show the “Data Source Configuration Wizard” dialog. Follow the wizard as the picture description below.