reset and begin
4/29/2010

them bang trong joomla

<install>
<queries>
<query>DROP TABLE IF EXISTS `#__test`</query>
<query>
CREATE TABLE `#__test` (
`id` int(10) NOT NULL auto_increment,
`title` varchar(40) NOT NULL default '',
PRIMARY KEY  (`id`)
) TYPE=MyISAM;
</query>
</queries>
</install>

chuyen anh theo thoi gian

<code>
// Created by: Lee Underwood :: http://javascript.internet.com/
var t;
var bannerImg = new Array();
// Enter the names of the images below
bannerImg[0]="1.jpg";
bannerImg[1]="2.jpg";
bannerImg[2]="3.jpg";

var linkimg = new Array();

linkimg[0]="http://dantri.com.vn";
linkimg[1]="http://vtc.vn";
linkimg[2]="http://saovn.com";
var newBanner = 0
var totalBan = bannerImg.length

function cycleBan() {
newBanner++
if (newBanner == totalBan) {
newBanner = 0
}
document.banner.src=bannerImg[newBanner]
document.getElementById('linkchuyen').href=linkimg[newBanner]
t=setTimeout("cycleBan()", 2*1000)
}
function stop(){
clearTimeout(t);
}

window.onload=cycleBan;


a img{
border:3px solid #f2f2f2;
margin:2px;
}

<a href="#" name="linkchuyen" id="linkchuyen">
<img src="1.jpg" width="300px" height="200px">
</a>
</code>

chuyen link va anh javascript


// Created by: Lee Underwood :: http://javascript.internet.com/
var t;
var bannerImg = new Array();
// Enter the names of the images below
bannerImg[0]="1.jpg";
bannerImg[1]="2.jpg";
bannerImg[2]="3.jpg";

var linkimg = new Array();

linkimg[0]="http://dantri.com.vn";
linkimg[1]="http://vtc.vn";
linkimg[2]="http://saovn.com";
var newBanner = 0
var totalBan = bannerImg.length

function cycleBan() {
newBanner++
if (newBanner == totalBan) {
newBanner = 0
}
document.banner.src=bannerImg[newBanner]
document.getElementById('linkchuyen').href=linkimg[newBanner]
t=setTimeout("cycleBan()", 2*1000)
}
function stop(){
clearTimeout(t);
}

window.onload=cycleBan;


a img{
border:3px solid #f2f2f2;
margin:2px;
}





4/26/2010

cách rewrite đơn giản

b1 bật mod rewrite trên apache lên nếu chưa biết vui lòng google search hay tìm lại trong này
b2 tạo file .htaccess
với nội dung
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^index/(.+)/(.+)/(.+)$ index.php?id=$1&page=$2&cool=$3 [QSA,L]
RewriteRule ^index/(.+)/(.+)$ index.php?id=$1&page=$2 [QSA,L]
RewriteRule ^index/(.+)$ index.php?id=$1 [QSA,L]


RewriteRule ^index/(.+)/(.+)/(.+)$ index.php?id=$1&page=$2&cool=$3 [QSA,L]
3 request id,page,cool
b3 tạo file php chạy thử
<?php

if (isset($_GET['page']))
{

echo "

".$_GET['page']."

";
}
if (isset($_GET['id']))
{
echo $_GET['id']."
";
}
if (isset($_GET['cool']))
{
echo $_GET['cool']."
";
}


?>

1
12
154

3 đường link trên là ảo sẽ được request đến htaccess chờ xử lý .
Chú ý mọi link trên trang php sẽ chuyển từ dạng index?id=1 thành index/100 với 100 là request id để có thể xử lý chạy được

4/25/2010

lấy giá vàng bóc tách nội dung C#

sử dụng C# để bóc tách nội dung của 1 trang xml
string urdl = "http://www.vietcombank.com.vn/ExchangeRates/ExrateXML.aspx";
int i = 0;
XmlTextReader MyReader = new XmlTextReader(urdl);
while (MyReader.Read())
{
if (MyReader.Name == "Exrate")
{
Response.Write(MyReader.GetAttribute(0).ToString());
Response.Write("
");
}

}

List

Profiles Information


About me : Nothing is 1 vài thứ - 1985

Places I've Lived : I Hà Nội

Home Page : http://www.shimivn.blogspot.com/

Think : 1:1000000000

Languages spoken : Vietnamese,English.

Mobile : sony C2305

dell : i3-Ram 3GB- HDD 250GB .