<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<script type="text/javascript">
fid="31CE2139109B";ftype="stream";
</script>
<script type="text/javascript" src="http://express.freedocast.com/Js/Fc_Embed_Player.js">
</script>
</body>
</html>
Note: save this as my-channel.html
Tuesday, March 23, 2010
Sunday, March 14, 2010
Reading and Updating a mysql table using php
<?php
//Establishing connection with database and including functionalities
define('DB_HOST','localhost');
define('DB_NAME','mydb');
define('DB_USER','root');
define('DB_PASS','');
$con=@mysql_connect(DB_HOST,DB_USER,DB_PASS);
$bd=@mysql_select_db(DB_NAME) or die ("Cannot connect to the database".mysql_error());
?>
<?php
if (isset($_POST['Submit']))
{
$title=$_REQUEST['txtitle'];
$desc=$_REQUEST['txtdesc'];
{
$sql1=@mysql_query("Update `about` Set `title` = '$title' , `desc` = '$desc' where id='1'");
if(!$sql1)
{
@mysql_query("ROLLBACK");
}
}
}
$sql2=@mysql_query("Select * from `about` where id='1'");
if(mysql_num_rows($sql2)>0)
{
$rs=@mysql_fetch_object($sql2);
}
?>
<html>
<body>
<form action="one.php" method="post">
<table width="100%" border="1">
<tr>
<th scope="row">Title</th>
<td><input name="txtitle" type="text" id="textfield" value="<?php echo $rs->title;?>" /></td>
</tr>
<tr>
<th scope="row">Desc</th>
<td><textarea name="txtdesc" id="txtdesc" cols="45" rows="5"><?php echo $rs->desc;?></textarea></td>
</tr>
<tr>
<th scope="row"> </th>
<td><input type="submit" name="Submit" id="button" value="Send" /></td>
</tr>
</table>
</form>
</body>
</html>
//Establishing connection with database and including functionalities
define('DB_HOST','localhost');
define('DB_NAME','mydb');
define('DB_USER','root');
define('DB_PASS','');
$con=@mysql_connect(DB_HOST,DB_USER,DB_PASS);
$bd=@mysql_select_db(DB_NAME) or die ("Cannot connect to the database".mysql_error());
?>
<?php
if (isset($_POST['Submit']))
{
$title=$_REQUEST['txtitle'];
$desc=$_REQUEST['txtdesc'];
{
$sql1=@mysql_query("Update `about` Set `title` = '$title' , `desc` = '$desc' where id='1'");
if(!$sql1)
{
@mysql_query("ROLLBACK");
}
}
}
$sql2=@mysql_query("Select * from `about` where id='1'");
if(mysql_num_rows($sql2)>0)
{
$rs=@mysql_fetch_object($sql2);
}
?>
<html>
<body>
<form action="one.php" method="post">
<table width="100%" border="1">
<tr>
<th scope="row">Title</th>
<td><input name="txtitle" type="text" id="textfield" value="<?php echo $rs->title;?>" /></td>
</tr>
<tr>
<th scope="row">Desc</th>
<td><textarea name="txtdesc" id="txtdesc" cols="45" rows="5"><?php echo $rs->desc;?></textarea></td>
</tr>
<tr>
<th scope="row"> </th>
<td><input type="submit" name="Submit" id="button" value="Send" /></td>
</tr>
</table>
</form>
</body>
</html>
Tuesday, March 9, 2010
Rss2.0 And Atom1.0 Compared
RSS and Atom
People who generate syndication feeds have a choice of feed formats. As of mid-2005, the two most likely candidates will be RSS 2.0 and Atom 1.0. The purpose of this page is to summarize, as clearly and simply as possible, the differences between the RSS 2.0 and Atom 1.0 syndication languages.http://www.intertwingly.net/wiki/pie/Rss20AndAtom10Compared
Friday, March 5, 2010
Integrating Twitter Into An ASP.NET Website
Integrating Twitter Into An ASP.NET Website: "This article shows how to integrate Twitter with an ASP.NET website using the Twitterizer library, which is a free, open-source .NET library for working with the Twitter API. Specifically, this article shows how to retrieve your latest tweets and how to post a tweet using Twitterizer."
Monday, March 1, 2010
BSNL introduced First WiMax in Kerala
Bharat Sanchar Nigam Limited (BSNL) will launch its mobile WiMax (Worldwide Interoperability for Microwave Access), a fourth-generation technology that enables high-speed wireless Internet access in Kerala. This is the first launch of BSNL WiMax service in South India.
The WiMax-based solution is set up and deployed like cellular systems using base stations with coverage over a radius of several kilometers. The customer premise equipment (CPE) will connect the base station to the customer. WiMax is available in both indoor and outdoor versions.
BSNL is the first telecom operator in the country to have launched the Mobile WiMAX service.
AVIAT – formerly Harris Stratex – has provided the technology for the Mobile WiMAX (Worldwide Interoperability for Microwave Access).
BSNL is deploying the WiMAX technology in Kerala, offering a broadband internet speed of up to 37 mbps, with 900 BTS (Base Transmitting Stations) in order to cover the whole of the state, according to BSNL.
In the first phase, 450 Base Transmitting Stations will be set up to cover all the major cities, all district headquarters as well as important towns in Kerala, with the project costing about Rs 100 crore. Initially, roaming will be available within Kerala.
In the second phase, 450 more Base Transmitting Stations will be installed to cover the remaining towns of Kerala.
The WiMAX technology provides access to broadband internet service at a cost performance ratio which is much better than any other technology, BSNL said.
According to BSNL, the technology offers features such as high-speed broadband connectivity anywhere, anytime for devices such as desktop computers and laptop computers on wireless, national roaming, telemedicine, Web-based commerce, distance-learning, as well as low-cost connectivity to bank ATMs and railway reservation centres
WiMAX, according to BSNL, is considered a cheaper alternative to cable broadband access and digital subscriber lines owing to the minimal cost of installation compared to the wired version of the broadband internet service.
BSNL has 2 tariff plans for the WiMAX service – the Home Plan, with a fixed monthly charge of Rs 999, and the Business Plan, with a fixed monthly charge of Rs 1,999.
In all, 25 Base Transmitting Stations, covering Ernakulam city and the municipalities of Aluva, Kalamassery, Tripunithura and Angamaly, were commissioned on February 27, 2010.
Another 59 Base Transmitting Stations will be commissioned shortly.
Subscribe to:
Posts (Atom)