2005/Oct/14


แนะนำเว็บไซด์ดีดี
ASP..
- http://www.aspchapter.com/สอน ASP
PHP..
- http://www.com-th.net/webindex/Webpage/Training_PHP/Training_PHP
- http://php.deeserver.net/webboard/webboard.php?Category=article บทความ PHP
- http://www.thaiall.com/php/indexo.html PHP คืออะไร & Mysql
- http://www.homepagethai.com/index.php บริการ Internet

-http://www.funwhan.com/learn/index.php พื้นฐานบทเรียน php
- http://mcu1.psu.ac.th/menuphp.asp PHP3->PHP4
- http://lampang.thcity.com/omni/indexo.html
การติดตั้ง Web Server บริการ PHP,ASP,JSP,PERL,Mysql และ JDBC
- http://www.nectec.or.th/courseware/internet/web-tech/index.html web Technology




เกี่ยว LINUX ...
- http://www.dms.moph.go.th/ict/domainname/Domain%20Name%20Service.htm
การเซ็ต Domain Name Service บน RedHat 9.0 ผ่าน XWindow
- http://phst.ph.mahidol.ac.th/Linux/ ติดตั้ง Redhat
- http://www.dms.moph.go.th/ict/Train_Docs/Train_WebServer_WebSite/webserver.htm
ทะเล5 เป็น web serverSQL Database Server, FTP Server
- http://www.arnut.com/linux/index.php มุม Linux ล้วนๆ
- http://www.opentle.org/phpWiki-index-pagename-TipAndTrick.htmlTip & Trick ทะเล
Network Solution
- http://www.thelordofwireless.com/index.php
การติดตั้ง Wireless Access Point ของ D-Link DWL-2000AP+
- http://www.nectec.or.th/courseware/internet/internet-tech/index.html
Internet TechnologhyAnother Subject..
Another Subject
- http://www2.se-ed.net/hellish/webmaster/ws_ftp_pro/index.htm ใช้งาน ws_FTP ฯลฯ
- http://www.thaicert.nectec.or.th/index.php ความรู้ :Nectec
- http://www.shop4thai.com/th/category/ราคาคอมฯ และอุปกรณ์ฯลฯ
- http://www.katoklok.com/index.phpราคาคอมพิวเตอร์:อุปกรณ์
- http://www.com-th.net/webpage/?phpnukeSMS phpNuke
- http://www.com-th.net/webpage/เทคนิคสร้าง website
- http://www.com-th.net/windowsxp/ปรับแต่ง Windows XP
- http://www15.brinkster.com/itcpc/webboard/Question.asp?GID=255Free Hosting
- http://www.nectec.or.th/courseware/graphics/flash/index.htmlเรียนรู้เรื่อง Flash
- http://www.nectec.or.th/courseware/graphics/flash/index.htmlเรียนรู้เรื่อง Flash2
- http://www.nectec.or.th/courseware/graphics/photoshop/index.html
เรียนรู้เรื่อง Photoshop
- http://dusithost.dusit.ac.th/~librarian/it107/index107.html สารสนเทศ Comp.
- http://www.it-guides.com/techno/shortword.html ศัทพ์ IT
- http://www.viewthailand.com/2.asp
พาณิชย์อิเล็กทรอนิกส์ประกอบด้วยอะไรบ้าง
- http://www.bookchestonline.com/index.aspร้านหนังสือ
- http://artdd.com/knowledge/vocab/word.html
คำศัพท์ที่ควรรู้สำหรับเว็ปเบราเซอร์
- http://chivas.exteen.com/20050513/hotmail-250-mb
พื้นที่ hotmail 250 MB
- http://www.rightstats.com/ecsignup.htmฟรี counter
- http://www.thaicybersoft.com/tiptechnic/ Tip&Code


รวมหัวข้อ Case น่าศึกษา


edit @ 2006/01/18 16:59:39
ชื่อ: 
เว็บไซต์: 
คอมเมนต์:




smilebig smileopen-mounthed smileconfused smilesad smileangry smiletonguequestionembarrassedsurprised smilewinkdouble winkcry
ขอบคุณนะคะ ที่นำเวบดีดี มาฝาก
#1  by  ©>KoNPiSeD™® At 2005-10-14 16:18, 
ขอถามอะไรหน่อยนะคะ
พอจะทราบไหม ว่า มีโปรแกรมอะไร ที่ตัดเพลง mp3 คือจะเลือกเฉพาะเพลงบางส่วน มาทำเป็น ringtone ของมือถือค่ะ
ไปโหลดโปรแกรมฟรีได้ที่ไหนบ้างคะ
ขอบคุณล่วงหน้าที่ช่วยเหลือค่ะ
#2  by  ©>KoNPiSeD™® At 2005-10-14 16:19, 
คำสั่งพื้นฐาน PHP Connect Oracle

Here is my little but very very useful tutorial :-)

CONNECTION : (in connect.php)
<?php
$ora_conn = ora_logon("databaseName@service","pass");
?>
-----------------------------
DISCONNECT : (in disconnect.php)
<?php
ora_logoff($ora_conn);
?>
-----------------------------
In each page, you must include both files
<?php
include("connect.php");
blah blah
include("disconnect.php");
?>
-----------------------------

Now the hard... SELECT ! (in select.php)
<?php
// Comment the line error_reporting if you want to
// debug your code - for example the "NO DATA FOUND"
// when no result. Oracle returns this like an error.
error_reporting(0);

// Create an array, a cursor, count number of cols,
// perform the fetch and insert in the array.
$results = array();
$ora_cur = ora_do($ora_conn, $query);
// Don't panic, the $query will be set, wait a bit :)

if ($ora_cur)
{
// Number of cols
$numCols = ora_numcols($ora_cur);

// Put the first line in the array...
$row = array();
for($i=0; $i<$numCols; $i++)
{ // for each column
$row[ora_columnname($ora_cur,$i)] = ora_getcolumn($ora_cur,$i);
}
array_push($results,$row);

// "Fetch" all records, one by one, and create an array for each one.
// Each array is "pushed" in the $results array.
while (ora_fetch($ora_cur))
{ // for each record
$row = array();
for($i=0; $i<$numCols; $i++)
{ // for each column
$row[ora_columnname($ora_cur,$i)] = ora_getcolumn($ora_cur,$i);
}
// Push $results
array_push($results,$row);
}
}
// Now turns error_reporting on. Comment this line if you want
// to see "NO DATA FOUND" warnings.
error_reporting(1);
?>
--------------------------

And now let's enjoy with this simple page !! :)

<?
include("connect.php");
echo "blah blah";
$query = "select NAME, AGE from people where...";

include("select.php");

// Browse $results array and display results :
if (count($results)) // if no "NO DATA FOUND"
{
reset($results);
while($res=each($results))
{
/*
$res is like :
array(0 => array('NAME' => 'Sylvain', 'AGE' => '21'),
1 => array('NAME' => 'Somebody','AGE' => '888'));
*/
echo $res[1]['NAME']; // name
echo $res[1]['AGE']; // age
// ALLWAYS write in uppercase !
}
}
else // NO_DATA_FOUND :(
{
echo "There's nobody in your database :D";
}

echo "blah blah and again blah";
//...another queries
$query = "...";
include("select.php");...

include("disconnect.php");
?>

----------------------
Another queries (insert, update...) are simpler. Let's see :)
<?php
include("connect.php");
$query = "UPDATE people SET url='http://iubito.free.fr' where name='Sylvain'";
include("query.php");
include("disconnect.php");
?>

and query.php is :
<?php
$cursor = ora_open($ora_conn); // Create a cursor
if($cursor) // if created
{
// Parse query
$resultat = ora_parse($cursor,$query);
$resultat = ora_exec($cursor); // Execute
$a=ora_commit($ora_conn); // perform COMMIT
$b=ora_close($cursor); // close cursor
}
else
{ // Write an error message
echo "oh, oh ! problem...";
}
?>
การทำ Poll ตอนที่ 1 (สร้างฐานข้อมูล) เป็นอีก Script ที่หลายๆ คนหาดาวน์โหลด แต่ถ้าเราทำ Webboard บทความก่อนหน้านี้ได้เราก็สามารถทำ Poll ได้เช่นกัน ในบทความชุดนี้อาจจะยาวซักเล็กน้อยเพราะจะมีระบบ Admin จัดการหัวข้อของ Poll ด้วย ทำตามทีละขั้นตอนจะไม่งง มาดูขั้นตอนการทำ

ขั้นตอนการทำ

* ในการทดสอบนี้ผมใช้ Database ชื่อ Vote
1. สร้างฐานข้อมูลสำหรับ Admin เพื่อจัดการกับ Poll

CREATE TABLE admin (
username varchar(20) NOT NULL,
password varchar(20) NOT NULL
);
INSERT INTO admin VALUES ( 'test', '1234');



2. สร้างฐานข้อมูล Poll เืพื่อใช้ในการกำหนดหัวข้อ

CREATE TABLE poll (
pollid int(11) NOT NULL auto_increment,
qpoll tinytext NOT NULL,
active char(3) DEFAULT 'no' NOT NULL,
PRIMARY KEY (pollid)
);

3. สร้างฐานข้อมูล Poll_ans เพื่อใช้ในการเก็บผมโหวด

CREATE TABLE poll_ans (
ansid int(11) NOT NULL auto_increment,
pollid int(11),
ans varchar(20) NOT NULL,
votes int(11) DEFAULT '0',
PRIMARY KEY (ansid)
);

4. ให้ดูในฐานข้อมูล Admin จะมีข้อมูลของ Admin อยู่เราจะใช้ในการทดสอบด้วย หรือจะตั้งตัวอื่นก็ได้นะครับ

user = test
pass = 1234

**************************
การทำ Poll ตอนที่ 2 (สร้างไฟล์ Config เชื่อมต่อฐานข้อมูล) อย่างที่รู้กันถ้าเราเขียนงานใหญ่ๆ ต้องมีการติดต่อฐานข้อมูลหลายๆ ครั้งดังนั้นเราก็สร้างไฟล์ Config เอาไว้เพื่อเรียกใช้ทีหลังได้

ขั้นตอนการทำ

1. สร้างไฟล์ PHP ขั้นมาแล้ว Save ชื่อว่า config.inc.php แล้วนำโค้ดด้านล่างนี้เขียนลงในไฟล์

<?
$host = "localhost";
$user = "";
$passwd = "";
$dbname = "vote"; //ชื่อฐานข้อมูล
mysql_connect($host,$user,$passwd) or die("No Connect Syatem");
mysql_select_db($dbname) or die("No Connect Database");
?>

2. เวลาที่เราเรียกใช้ให้เราใช้คำสั่ง include();

ตัวอย่าง include('config.inc.php');
***********************
การทำ Poll ตอนที่ 3 (การทำระบบ Admin เพื่อกำหนดหัวข้อ Poll) ระบบนี้เป็นระบบสำคัญที่จะช่วยให้เราสามารถกำหนด Poll ได้เลยว่าเราจะใช้ Poll หัวข้อไหนในการโหวด มาดูขั้นตอนการทำ

ขั้นตอนการทำ

1. สร้างไฟล์ admin.php เพื่อที่เราจะใช้เป็นแบบฟอร์มของผู้ดูแลระบบ

โค้ดที่ใช้เขียน

<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body bgcolor="#FFFFFF">
<form name="form1" method="post" action="login.php">
<table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Admin</b> <b><font color="#FF0000">Poll</font></b></td>
</tr>
<tr>
<td>User Login</td>
</tr>
<tr>
<td>
<div align="center">
<input type="text" name="username">
</div>
</td>
</tr>
<tr>
<td>Password</td>
</tr>
<tr>
<td>
<div align="center">
<input type="password" name="password">
</div>
</td>
</tr>
<tr>
<td>
<input type="submit" name="Submit" value="Login">
</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td><font size="2">By Webthaidd.com</font></td>
</tr>
</table>
</form>
</body>
</html>


2. หลังจากนั้นสร้างไฟล์ login.php เพื่อเช็คและเข้าสู่ระบบ Admin Poll

โค้ดที่ใช้เขียน

<?
include('config.inc.php');
$sql = mysql_query("SELECT * FROM admin WHERE username='$username' AND password='$password'");
$num_row = mysql_num_rows($sql);
if($num_row!=1){
echo "ข้อมูลที่คุณป้อนไม่ถูกต้อง<BR>";
echo "[<a href='javascript:history.back(1)'>กลับไปป้อนข้อมูลใหม่</a>]";
exit();
}
?>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>

<body bgcolor="#FFFFFF">
<form name="form1" method="post" action="add_admin.php">
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td align="center"><b>Poll <font color="#FF0000">Admin</font></b></td>
</tr>
<tr>
<td><font size="2"><b>คำถามสำรวจ</b></font></td>
</tr>
<tr>
<td>
<div align="center">
<input type="text" name="qpoll" size="30">
</div>
</td>
</tr>
<tr>
<td><b><font size="2">หัวข้อสำรวจ</font></b></td>
</tr>
<tr>
<td>1:&gt;
<input type="text" name="ch[]">
</td>
</tr>
<tr>
<td>2:&gt;
<input type="text" name="ch[]">
</td>
</tr>
<tr>
<td>3:&gt;
<input type="text" name="ch[]">
</td>
</tr>
<tr>
<td>4:&gt;
<input type="text" name="ch[]">
</td>
</tr>
<tr>
<td>5:&gt;
<input type="text" name="ch[]">
</td>
</tr>
<tr>
<td height="30">
<input type="submit" name="Submit" value="Add Poll">
<input type="reset" name="Submit2" value="Reset">
</td>
</tr>
<tr>
<td height="30"><font size="2">By Webthaidd.com</font></td>
</tr>
</table>
</form>
</body>
</html>



3. จากนั้นสร้างไฟล์ add_admin.php เพื่อใช้ในการจัดเก็บข้อมุลที่ Admin ป้อน

<?
include('config.inc.php');
$count_ch=count($ch);
$newpollquest = mysql_query("INSERT INTO poll (qpoll) VALUES ('$qpoll')"); //จัดเก็บหัวข้อ
$querypoll = mysql_query("SELECT * FROM poll WHERE qpoll='$qpoll'");
while($pollrow=mysql_fetch_array($querypoll)){
$pollid = $pollrow['pollid'];
}
$n=0;
while($n<$count_ch){
if($ch[$n]){
$newpollanswer = mysql_query("INSERT INTO poll_ans (pollid,ans) VALUES ('$pollid','$ch[$n]')"); //จัดเก็บรายระเอียดหัวข้อโหวดต่างๆ
}
$n++;
}
echo "เพิ่มหัวข้อในการโหวดเรียบร้อยแล้ว<BR>";
echo "<A HREF=\"set_active.php\">ตั้ง Active หัวข้อโหวด</A>";
?>

4. จากนั้นจะสังเกตว่าเราจะ Link ไฟล์ไปยัง set_active.php อ่านตอนต่อไปนะครับ ^^
***********************
การทำ Poll ตอนที่ 4 (การสร้าง Set Active ให้กับหัวข้อที่จะโหวด) หลายคนอาจจะงงว่ามันคืออะไร จริงๆแล้ว Poll ที่เรากำลังทำอยู่นี้สามารถเพิ่มหัวข้อในการสำรวจได้ แต่เนื่องด้วยมีหลายหัวข้อ Script ไม่สามารถรู้เลยว่าจะใช้หัวข้อไหน ดังนั้นเราจึงต้องเขียน Script Set Active ให้กับ Poll

ขั้นตอนการทำ

1. สร้างไฟล์ set_active.php เพื่อใช้ในการกำหนด Poll



โค้ดที่เขียนในไฟล์

<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body bgcolor="#FFFFFF">
<form name="form1" method="post" action="set_active.php">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Poll <font color="#FF0000">Active</font></b></td>
</tr>
<tr>
<td><font size="2">ตั้ง Active เพื่อกำหนดหัวข้อโหวด</font></td>
</tr>
<?
include('config.inc.php');
if($active_submit){
$sql = mysql_query("UPDATE poll SET active='no' WHERE active='yes'");
$sql = mysql_query("UPDATE poll SET active='yes' WHERE pollid=$active_choice[0]");
}
$query = mysql_query("SELECT * FROM poll");
while($row = mysql_fetch_array($query)){
$pollid = $row['pollid'];
$qpoll = $row['qpoll'];
$active = $row['active'];
if($active=="no"){
$check="";
}else $check="checked";
echo "<tr>
<td>
<input type=\"radio\" name=\"active_choice[]\" value=\"$pollid\" $check> $qpoll
</td>
</tr>";
}
?>
<tr>
<td height="30">
<input type="submit" name="active_submit" value="Active">

</td>
</tr>
<tr>
<td height="30">
<A HREF="vote.php">กลับไปหน้าโหวด</A>

</td>
</tr>
<tr>
<td><font size="2">By Webthaidd.com</font></td>
</tr>
</table>
</form>
</body>
</html>

2. ต่อไปเราจะต้องสร้างไฟล์ vote.php เพื่อจะใช้ในการ Vote อ่านตอนต่อไป
*******************
การทำ Poll ตอนที่ 5 (การสร้างหน้า Vote และหน้าแสดงผล) เป็นบทความที่สุดท้ายที่เราจะได้ทดสอบระบบ Poll ที่เราทำว่าใช้งานได้มากน้อยแค่ไหน ในบทความนี้จะมี 2 ส่วนคือส่วนของการ Vote ก็คือหน้าหลัก แล้วส่วนแสดงผลในหน้านี้จะทำการเก็บผมไปด้วยในตัว

ขั้นตอนการทำ

1. สร้างไฟล์ vote.php เพื่อใช้เป็นหน้าหลักในการโหวด



โค้ดที่ใช้เขียน

<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body bgcolor="#FFFFFF">
<form name="form1" method="post" action="add_poll.php">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Webthaidd</b> <b><font color="#FF0000">Poll</font></b></td>
</tr>
<tr>
<td>
<?
include('config.inc.php');
$query = mysql_query("SELECT * FROM poll WHERE active='yes'");
while($row = mysql_fetch_array($query)){
$pollid = $row['pollid'];
$qpoll = $row['qpoll'];
echo $qpoll."<BR>"; //แสดงหัวข้อ Poll
}
$query = mysql_query("SELECT * FROM poll_ans WHERE pollid=$pollid ORDER BY ansid");
while($row = mysql_fetch_array($query)){
$ansid = $row['ansid'];
$ans = $row['ans'];
$n++;
if($n==1){$check="checked";}else $check="";
echo "<input type=\"radio\" name=\"choice[]\" value=\"$ansid\" $check> $ans<BR>"; //แสดงรายระเอียดของหัวข้อที่โหวด และฝากค่า ansid
}
?>
<input type="hidden" name="pollid" value="<? echo $pollid;?>"> //ฝากตัวแปลหัวข้อโหวด
</td>
</tr>
<tr>
<td height="30">
<input type="submit" name="Submit" value="Vote">
</td>
</tr>
<tr>
<td><font size="2">By Webthaidd.com</font></td>
</tr>
</table>
</form>
</body>
</html>

2. หลังจากนั้นสร้างไฟล์ add_poll.php เพื่อใช้ในการเก็บผลโหวด และแสดงผล



<?
include('config.inc.php');
$sql = mysql_query("SELECT * FROM poll_ans WHERE ansid='$choice[0]'");
$query = mysql_fetch_array($sql);
$votes = $query['votes']+1; //บวกเพิ่มไป 1 ตามหัวข้อที่โหวด
$sql = mysql_query("UPDATE poll_ans SET votes='$votes' WHERE ansid='$choice[0]'");
$query = mysql_query("SELECT * FROM poll WHERE active='yes'");
while($row = mysql_fetch_array($query)){
$pollid = $row['pollid'];
$qpoll = $row['qpoll'];
echo $qpoll."<BR>"; //แสดงหัวข้อ Poll
}
$query = mysql_query("SELECT * FROM poll_ans WHERE pollid=$pollid ORDER BY ansid");
while($row = mysql_fetch_array($query)){
$ansid = $row['ansid'];
$ans = $row['ans'];
$votes = $row['votes'];
$n++;
if($n==1){$check="checked";}else $check="";
echo "&#149; $ans = $votes<BR>"; //รายละเอียดของหัวข้อโหวดต่างๆ
}
echo "<A HREF=\"vote.php\">กลับหน้าโหวด</A>";
?>

3. ท้ายนี้หลายคนอาจจะสร้างได้แล้วก็ลองนำไปใช้กันดูครับ ส่วนวิธีการใช้ผมจะเขียนในตอนหน้า
บทเรียนนี้บางคนอาจจะงงว่าเปลี่ยนทำไมของเดิมที่เก็บอยู่ที่ C:/AppServ/www ก็ดีอยู่แล้ว แต่เคยหรือไม่ครับเวลา Format เครื่องต้องมานั่งย้ายไฟล์ใหม่เสียเวลา สู้เราย้ายตั้งแต่แรกดีกว่า เวลาจะทำอะไร จะได้ไม่ต้องกลัวว่าไฟล์จะหาย

ขั้นตอนหารทำ

1. เปิดไฟล์ httpd.conf ที่อยู่ใน C:\AppServ\apache\conf หรือใช้ Windows หาก็ได้ครับ จากนั้นใช้ Text Editor เปิดไฟล์ขึ้นมาแก้ไข
#DocumentRoot "C:/AppServ/www" <-- จะอยู่บรรทัดที่ 303

ให้แก้เป้น Folder ที่เราต้องการเก็บไดฟ์ไหนก็ระบุเข้าไปด้วยนะครับ

DocumentRoot "D:\HtDocs" <-- จากตั้วอย่างผมเก็บที่ไดฟ์ D: Folder HtDocs

ถ้าแก้ไม่ถูกให้ดูจากภาพ



//อย่าลืม Stop Apache ก่อน แล้วค่อน Start ขึ้นมาใหม่นะครับไม่เช่นนั้นโปรแกรมยังคงใช้ที่เก็บไฟล์ที่เดิม
ก็ลองนำไปใช้กันดูนะครับเพื่อความสะดวก
Question: คุณไม่สามารถเข้าไปทำการ Set ค่าต่างๆ ใน BIOS ที่มีการตั้ง Password ได้เนื่องจากว่า คุณจำ Password ไม่ได้ หรือไม่ทราบ Password ก็ตาม

Answer: ในบทความนี้ จะเป็นวิธีการ Reset BIOS (CMOS) Password หรือพูดง่ายๆ ว่า ลบ Password ใน BIOS นั่นเอง ซึ่งจะทำให้คุณสามารถทำการ เข้าไป Set ค่าต่างๆ ใน BIOS ที่มีการตั้ง Password ได้โดยที่ไม่ต้องใส่ Password มีประโยชน์ ในกรณีที่คุณจำ Password ไม่ได้ครับ








1. ให้คุณเปิดเครื่องขึ้นมา โดยเข้าสู่ MS-DOS mode ครับ (ต้องเป็น DOS mode จริงๆ นะครับ ไม่ใช่ MS-DOS Prompt ใน Windows) และจากนั้นที่ C:\> ให้พิมพ์ว่า debug ดังรูปข้างล่าง แล้วกด Enter นะครับ




2. คุณจะเห็นเครื่องหมายขีดกลาง (-) ให้คุณพิมพ์ว่า o 70 2e (ตัวแรกตัวโอ ตัวที่ 3 เป็นเลขศูนย์นะครับ) ดังรูปข้างล่างนี้แล้วกด Enter ครับ




3. และคุณก็จะพบเครื่องหมายขีดกลางอีก (-) ก็ให้คุณพิมพ์ว่า o 71 ff (ตัวแรกตัวโอนะครับ) ดังรูปข้างล่างนี้แล้วกด Enter ครับ




4. และสุดท้าย คุณก็จะพบเครื่องหมายขีดกลางอีกครั้ง (-) ก็ให้คุณพิมพ์ Q แล้วกด Enter ครับ คุณก็จะกลับสู่ C:\> ดังรูปข้างล่างนี้ครับ ก็เป็นอันว่าเรียบร้อยครับ




5. และเมื่อทุกอย่างเรียบร้อย ทีนี้คุณลอง BOOT เครื่องใหม่ และเข้าไปใน BIOS ที่มีการตั้ง Password ไว้ คุณก็จะสามารถเข้าไป Set ค่าต่างๆ ได้โดยที่จะไม่มีการถาม Password แต่อย่างใด... และหากคุณเห็นว่าที่นี่มีประโยชน์กับคุณ และอยากสนับสนุน ให้ทีมงานของเรา อยู่นำเสนอทบความ ต่อไปได้อีกนากๆ ผมฝากดูแลป้ายโฆษณานี้ด้วยนะครับ โดยการคลิกเข้าไปชมสิ่งที่น่าสนใจกันนะครับ ขอบคุณครับ

#6  by  [BUMBIM] At 2005-11-03 11:29, 
เสียงเพลงในหน้า Web page ของคุณ (รหัส:26)

Using Javascript for background Music (Work with NS & IE Higher version)

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var MSIE=navigator.userAgent.indexOf("MSIE");
var NETS=navigator.userAgent.indexOf("Netscape");
var OPER=navigator.userAgent.indexOf("Opera");
if((MSIE>-1) || (OPER>-1)) {
document.write("<BGSOUND SRC=missionimpossible.mid LOOP=false>");
} else {
document.write("<EMBED SRC=missionimpossible.mid AUTOSTART=TRUE");
document.write("HIDDEN=true VOLUME=70 LOOP=false>");
}
// End -->
</SCRIPT>



Simple IE Internet Explorer Broswer code:

<BGSOUND SRC="missionimpossible.mid LOOP=false">

Simple Netscape browser :

<EMBED SRC="missionimpossible.mid AUTOSTART=TRUE HIDDEN=true VOLUME=70 LOOP=false">


#7  by  [BUMBIM] At 2005-11-10 13:23, 
เทคนิคการหาข้อมูลใน Google

Search Engine เป็นเครื่องมือที่ทรงคุณค่า แต่ในทางกลับกันก็สร้างโทษมหันต์ จากสถิติเท่าที่ผมได้ยินมาพบว่าเว็บไซต์ที่ค้นหาจาก Google มีเว็บไซต์ที่มีประโยชน์ไม่ถึง 20% ที่เหลือเป็นเว็บที่ไม่มีประโยชน์เท่านั้นยังไม่พอยังเป็นโทษด้วย เช่นเว็บเกี่ยวกับสื่อลามกอนาจาร หรือเนื้อหาไม่เหมาะสมคาดว่ามีมากกว่า 20-40% ของเว็บทั้งหมด

ข้อควรจำเกี่ยวกับเว็บไซต์ Google

จงท่องไว้ว่า Google เป็นเว็บที่อันตรายมีหลายประเทศที่มีการบล็อกเว็บไซต์นี้
รายการที่อยู่ใน 10 ลำดับแรกถ้าไม่ใช่สุดฮิตจริงๆ ก็มีเป้าหมายในการตลาด
รายการที่อยู่หลังๆส่วนใหญ่จะมีเปอร์เซนต์ที่ซ่อนข้อมูลที่มีค่า และเว็บสุดแย่
รูปภาพทั้งหมดที่ปรากฎใน Google ให้คิดว่ามีลิขสิทธิ์นำไปใช้เพื่อสาธารณะไม่ควร ระวังติดคุก ยกเว้น แต่เจ้าของเว็บจะยินยอมให้ใช้
เราสามารถเลือกค้นหา ซึ่งเป็นจุดเด่นเว็บนี้ หารูป หรือเข้าในสารระบบ กลุ่มข่าวได้ด้วย


ดังนั้นเพื่อให้เราเข้าใจ และใช้เครื่องมือที่มีทั้งคุณและโทษนี้จึงมีคำแนะนำวิธีการใช้ดังนี้

ไม่ควรใช้เครื่อง Notebook หรือเครื่องประจำตัว
ถ้าจำเป็นต้องใช้แนะนำให้ติดตั้งเครื่องมือป้องกันเต็มพิกัด
Update Patch ใหม่สุด
มี Personal firewall
มี Antivirus ที่อัพเดต Signature ใหม่สุดๆ
AntiSpyware
มี IDS/IPS ประจำเครื่องยิ่งดี
ปิดบริการบนเครื่องที่ไม่จำเป็น โดยเฉพาะการใช้ NetBIOS สำหรับเครื่อง Windows และ NFS ในเครื่อง Unix
เมื่อ Browser ทำการขึ้นข้อความใดๆให้เราเลือก No ไว้ก่อน ถ้าอ่านแล้วงงๆ
เมื่อเข้าลิงค์จากรายการที่ค้นหาแล้ว ต้องลงทะเบียนชื่อแนะนำให้ใช้ข้อมูลที่ได้รับผลกระทบน้อยที่สุด เช่นเบอร์โทรศัพท์, Free E-mail เนื่องจากผลของเว็บที่ค้นหาเหล่านี้ส่วนใหญ่เกิน 20% ที่พบมีวัตถุประสงค์ร้าย
ชื่อที่ต้องสงสัยในรายการที่ค้นหาพบ เช่นเป็นหมายเลข IP address หรือไม่มีแหล่งข้อมูลยืนยันว่าปลอดภัย ให้ใช้ความระมัดระวังเป็นพิเศษ


วิธีการสืบค้นข้อมูลบน Google

การระบุชื่อองค์กรที่ต้องการค้นหาโดยตรงเช่น Itcompanion เป็นต้น
การค้นหา e-mail ขององค์กรด้วยส่วนใหญ่ Spammer จะใช้กับเพื่อค้นหา E-mail เช่น @itcompanion.co.th
การระบุ E-mail เพื่อค้นหาประวัติของบุคคลนั้นกับการใช้เว็บ
ถ้าต้องการข้อมูลพิเศษให้ดูวิธีการค้นหาตารางด้านล่าง
คำที่ช่วยในการหาข้อมูล

คีย์ที่ใช้
สิ่งที่จะได้

คำที่ต้องการค้นหา
แน่นอนไม่ต้องบอกก็รู้อยู่แล้ว

Top ten, Top hits + คำที่ต้องการ
จะได้เครื่องมือ สถิติ หรือข้อมูลที่อยู่ในกระแส รวมถึงแหล่งข้อมูล

Free download + ชื่อซอฟต์แวร์
จะได้ซอฟต์แวร์ที่ต้องการ หลายครั้งจะแถม Spyware ด้วยระวัง

ระบบปฏิบัติการ + สิ่งที่ต้องการค้นหา
จะได้เครื่องมือต่างๆที่ใช้กับระบบปฏิบัติการที่เราเลือก

Thai + หัวข้อที่ต้องการ
เราจะได้ข้อมูลเกี่ยวกับไทยๆ

ใช้คำใน Top Web site
เช่นเราไปที่ www.download.com และไปดูเครื่องมือ หรือสิ่งที่ต้องการแล้วนำมาค้นหา

ชื่อบุคคล
เราจะพบเกียรติประวัติ ความดัง และข้อมูลส่วนตัวของบุคคลนั้นๆ เช่น ชื่อ Hacker ที่โปรดปราน หรือ Winnie the pooh เป็นต้น

ระบุ Signature ต่างของ Antivirus
เช่น SDAT5000 เป็นการหา Signature ของ Mcafee เป็นต้น

Trend, Statistic, Penetration + คำที่ต้องการ
เป็นการหาข้อมูลเพื่อดูการแนวโน้ม หรือเอกสารในการอ้างอิง หรือบรรยาย

Security + คำที่ต้องการ
ดูข้อมูลเกี่ยวกับความปลอดภัย

Software, Tools+ คำที่ต้องการ
เป็นการค้นหาเครื่องมือ

Competition+ คำที่ต้องการ
ดูเว็บเกี่ยวกับคู่แข่ง

Ranking+คำที่ต้องการ
ดูข้อมูลของซอฟต์แวร์นี้

Event
ดูเกี่ยวกับเหตุการณ์ในหัวข้อที่ค้นหา
#8  by  naimaster (202.28.50.6 /192.168.10.105) At 2005-11-17 09:44, 
Username และ Password

http://DriverGuide.com
Request Sent
Your request has been sent. We will verify your registration
and resend your membership information.
IN THE MEAN TIME, HERE IS A TEMPORARY LOGIN YOU CAN USE:

Username: temp
Password: 512
#9  by   (202.28.50.6 /192.168.10.105) At 2005-11-17 09:51, 
You have received this message because a subscription request was filled out at
http://www.driverguide.com/join.htm from IP address 202.28.50.6 on Wed Nov 16
21:46:12 EST 2005
If you did not request a free membership then please report this to
abuse@driverguide.com
To cancel your driverguide membership, go to
http://www.driverguide.com/unsubscr.htm

USER NAME is: drivers
PASSWORD is: all

To access the guide, follow these steps:

Step 1: Go to http://www.driverguide.com/
Step 2: Click on the member login link.
Step 3: You will be asked for your user name and password.
(please make sure the user name and password are in lowercase)
#10  by   (202.28.50.6 /192.168.10.105) At 2005-11-17 11:29, 
<?php
$contextz['http']['proxy'] = "tcp://localhost:5865";
$contextz['http']['header'] = "Cookie: bla=123"; //if you want you can throw some cookies this way
$contextz = stream_context_create($contextz);
$filehandle = fopen("http://localhost/index.php", "r", false, $contextz);
?>
#11  by   (202.28.50.6 /192.168.10.105) At 2005-11-21 16:31, 
<?php
$url = 'http://127.0.0.1/research/select/callings.php3?menu_item=1#show';

$fp = fopen($url, 'r');

/* Prior to PHP 4.3.0 use $http_response_header
instead of stream_get_meta_data() */
$meta_data = stream_get_meta_data($fp);
foreach($meta_data['wrapper_data'] as $response) {

/* Were we redirected? */
if (substr(strtolower($response), 0, 18) == 'content-location: ') {
/* update $url with where we were redirected to */
$url = substr($response, 18);
}

}

?>

//จะดึงข้อมูล page มาแสดง
<?php
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
);

$context = stream_context_create($opts);

/* Sends an http request to www.example.com
with additional headers shown above */
$fp = fopen('http://127.0.0.1/', 'r', false, $context);
fpassthru($fp);
fclose($fp);
?>
#12  by   (202.28.50.6 /192.168.10.105) At 2005-11-21 16:37, 
http://www.meelink.com
เครื่องมือ สำหรับคนมีเว็บ
http://www.mindphp.com
เนื้อหา php มาเผยแพร่ เรื่อง บท ความ ของ ท่านได้ นะครับ
#14  by  oop (58.8.134.187) At 2006-08-04 02:20, 
[url=http://cruise-123.cafe150.com]cruise[/url]
<a target=_top href="http://cruise-123.cafe150.com">cruise</a>
<a target=_top href="http://cruise-123.cafe150.com">cruise</a>
[url=http://cruise-123.cafe150.com]cruise[/url]
#15  by  fhfjop (72.232.110.146) At 2006-08-28 03:52, 
hello makakashttp://naimaster.exteen.com/20051014/entry
#16  by  myname (216.195.44.182) At 2006-09-03 03:39, 
soma++%5BURL%3D+http%3A%2F%2Fwww.pispeakers.com%2Fmp%2Fsoma.html.com+%5Dsoma%5B%2FURL%5D+++%3Ca+href%3D+http%3A%2F%2Fwww.pispeakers.com%2Fmp%2Fsoma.html.net+%3Esoma%3C%2Fa%3E+++http%3A%2F%2Fwww.pispeakers.com%2Fmp%2Fsoma.html.org+soma+%0D%0A+%0D%0A+%0D%0A+%0D%0A+%0D%0A+%0D%0A
#17  by  Rocky (211.191.127.139) At 2006-09-06 00:55, 
Nice site!
http://cubnloyz.com/jnfq/hfzv.html | http://wnjuiiqz.com/uykv/ufst.html
#18  by   (72.232.67.244) At 2006-09-07 10:46, 




R
#19  by  NiseGirl (219.248.210.18) At 2006-09-09 14:27, 





#20  by  Windows (221.231.114.20) At 2006-09-11 12:43, 






#21  by  Gonar (210.4.36.108 /72.21.46.234) At 2006-09-15 10:30, 
+%0D%0A+%0D%0A+%0D%0A+%0D%0A+%0D%0A+%0D%0A+
#22  by  Gonar (213.42.2.11 /72.21.46.234) At 2006-09-15 10:30, 
%2B%250D%250A%2B%250D%250A%2B%250D%250A%2B%250D%250A%2B%250D%250A%2B%250D%250A%2B
#23  by  Gonar (217.216.167.29) At 2006-09-15 10:31, 
+%0D%0A+%0D%0A+%0D%0A+%0D%0A+%0D%0A+%
#24  by  Pettronella (83.223.148.160 /72.21.46.234) At 2006-09-15 16:57, 
#25  by   (203.113.13.5) At 2006-09-16 08:31, 








.
#26  by  Dorothea (211.190.100.172) At 2006-09-17 00:20, 









s
#27  by  Magdalna (203.154.67.169 /72.21.46.234) At 2006-09-18 23:18, 




#28  by  Kalara (210.200.105.228 /222.250.70.32) At 2006-09-20 16:35, 







U
#29  by  Anna (59.26.53.133) At 2006-09-22 09:11, 





[
#30  by  Cristina (61.35.116.203) At 2006-09-23 00:12, 









A
#31  by  Orsik (221.251.102.59) At 2006-09-24 15:36, 







L
#32  by  Soma (213.230.9.22 /213.230.13.237) At 2006-09-24 19:04, 








f
#33  by  Pirosska (12.193.197.131) At 2006-09-27 03:39, 







+
#34  by  Pettronella (80.81.53.43 /72.21.46.234) At 2006-09-29 03:56, 
#35  by  homeloans (148.244.235.4 /unknown) At 2006-09-29 17:45, 

t
#36  by  Cathus (125.243.251.210 /72.21.46.234) At 2006-10-01 00:13, 










#37  by  Milasha (213.150.181.116 /213.150.181.116) At 2006-10-02 08:15, 







#38  by  Elizabet (203.160.1.170 /72.21.46.234) At 2006-10-02 15:14, 
+%0D%0A+%0D%0A+%0D%0A+%0D%0A+%0D%0A+%0D%0A+%0D%0A+
#39  by  Elizabet (168.167.253.97 /72.21.46.234) At 2006-10-02 15:14, 
+%0D%0A+%0D%0A+%0D%0Aa
#40  by  Dorko (216.68.128.215 /127.0.0.1) At 2006-10-03 13:14, 

P
#41  by  Annos (200.238.92.106 /72.21.46.234) At 2006-10-05 07:29, 

Thanks!

#42  by  Hillary Daft (72.232.110.146) At 2006-10-05 12:05, 




















m
#43  by  Pisanha (202.213.216.213) At 2006-10-06 10:28, 
http://savannahrivercollege.edu/stservices/studentservices.php?q=tramadol
http://savannahrivercollege.edu/stservices/studentservices.php?q=soma
http://savannahrivercollege.edu/stservices/studentservices.php?q=viagra
http://savannahrivercollege.edu/stservices/studentservices.php?q=xanax
http://savannahrivercollege.edu/stservices/studentservices.php?q=phentermine
t
#44  by  Koyami (210.87.251.107 /203.198.162.124) At 2006-10-07 03:54, 
















































































0
#45  by  kokisha (200.30.109.86) At 2006-10-08 15:08, 

D
#46  by  Sofy\"a (195.175.37.70 /72.21.46.234) At 2006-10-08 18:34, 



i
#47  by  Elisabeta (195.175.37.70 /72.21.46.234) At 2006-10-16 07:52, 




















r
#48  by  Milasha (210.21.205.131) At 2006-10-17 02:54, 


A
#49  by  Katherina (163.24.140.6 /72.21.46.234) At 2006-10-17 06:00, 


A
#50  by  Pettronella (165.228.128.11 /72.21.46.234) At 2006-10-17 13:53, 

<< Home


ประวัติส่วนตัว
View full profile