ช่วยแปลงเปน .ASP ให้หน่อยคับ ขอบคุณคับ เลือกฐานข้อมูลไม่ได้ , กำหนดคำสั่ง SQL เพื่อลบข้อมูล
mc2.php
<!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=windows-874" />
<title>Untitled Document</title>
</head>
<body>
<table width="696" height="990" border="1" align="center" cellspacing="0" bordercolor="#0000FF">
<tr>
<td valign="top"><br />
<table width="165" border="0" align="center">
<tr>
<td><img src="untitled2.JPG" width="492" height="104" /></td>
</tr>
</table>
<p> </p>
<p> </p>
<form name="form1" enctype="multipart/form-data" method="post" action="mc3.php">
<div align="center">เลือกไฟล์ที่จะ Uploads
<input type="file" name="file" />
<input type="submit" name="Submit" value="Uploads" />
</div>
</form></td>
</tr>
</table>
<p> </p>
</body>
</html>
mc3.php
<?
$host="localhost";
$username="";
$pass_word="";
$db="mydatabase";
$tb="picture";
mysql_connect( $host,$username,$pass_word) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้");
// นำฟังก์ชั่น Ramdom password มาใช้เพื่อกำหนดชื่อไฟล์ป้องกันการซ้ำกัน
function random_password($len)
{
srand((double)microtime()*10000000);
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
$ret_str = "";
$num = strlen($chars);
for($i = 0; $i < $len; $i++)
{
$ret_str.= $chars[rand()%$num];
$ret_str.="";
}
return $ret_str;
}
// echo random_password(8);
$passw = random_password(7);
$path="picture";
$filenewcon = strstr($file_name,'.');
$now = date("Dgis");
if(empty($file))
{
echo"กรุณาเลือกไฟล์";
}
else
{
copy( $file ,"$path/$passw$now$filenewcon");
$sql1= "INSERT INTO $tb (id,picture) VALUES ('','$passw$now$filenewcon')";
$dbquery1 = mysql_db_query($db, $sql1);
echo"Uploads ไฟล์สำเร็จ<br>";
echo"<a href='mc4.php'>ดูไฟล์ทั้งหมด</a><br>";
}
?>
mc4.php
<?
$host="localhost";
$username="";
$password="";
$db="mydatabase";
$tb="picture";
mysql_connect( $host,$username,$password) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้"); /* ทำการเลือกฐานข้อมูลก่อน */
$sql="Select * From $tb";
$db_query=mysql_db_query($db,$sql);
$num_rows=mysql_num_rows($db_query); /* นับ Reccord ที่พบ */
?>
<table width="696" height="990" border="1" align="center" cellspacing="0" bordercolor="#0000FF">
<tr>
<td valign="top"><br />
<table width="165" border="0" align="center">
<tr>
<td><img src="untitled3.JPG" width="492" height="109" /></td>
</tr>
</table>
<p> </p>
<table width="41%" border="1" align="center">
<tr>
<td width="8%"><div align="center">Id</div></td>
<td width="50%"><div align="center">File Name</div></td>
<td width="1%"><div align="center">ลบ</div></td>
</tr>
</table>
<?
$a=0;
while($a < $num_rows)
{
$result = mysql_fetch_array($db_query);
$id=$result[id];
$picture=$result[picture];
?>
<table width="41%" border="1" align="center">
<tr>
<td width="8%"><div align="center"> <? echo"$id";?> </div></td>
<td width="50%"><div align="center"> <a href="picture/<?echo"$picture";?>" target="_blank"> <? echo"$picture";?> </a></div></td>
<td width="1%"><div align="center"><a href="del.php ?id=<?=$id ?>&picture=<?=$picture ?>">ลบ</a></div></td>
</tr>
</table>
<?
$a++;
}
echo"<center><br>จำนวน Reccord = $num_rows</center>";
mysql_close();
?></td>
</tr>
</table>
del.php
<?
echo"$id";
$host="localhost";
$username="";
$password="";
$db="mydatabase";
$tb="picture";
mysql_connect($host, $username, $password) or die("ติดต่อฐานข้อมูลไม่ได้");// เลือกฐานข้อมูล
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้"); // คำสั่ง SQL และสั่งให้ทำงาน
$sql = "delete from $tb where id='$id' "; // กำหนดคำสั่ง SQL เพื่อลบข้อมูล
$dbquery = mysql_db_query($db, $sql) or die("ส่งคิวรีไม่ได้");
echo"$picture";
$folder="C:\AppServ\www\project\mc\picture";
unlink($folder."/".$picture);
header("location:mc2.php");
?> mc2.php mc3.php mc4.php del.php Tag : - - - -
Date :
26 พ.ค. 2551 16:10:29
By :
puan64
View :
1429
Reply :
3
mc4.php
<?
$host="localhost";
$username="";
$password="";
$db="mydatabase";
$tb="picture";
mysql_connect( $host,$username,$password) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้"); /* ทำการเลือกฐานข้อมูลก่อน */
$sql="Select * From $tb";
$db_query=mysql_db_query($db,$sql);
$num_rows=mysql_num_rows($db_query); /* นับ Reccord ที่พบ */
?>
<table width="696" height="990" border="1" align="center" cellspacing="0" bordercolor="#0000FF">
<tr>
<td valign="top"><br />
<table width="165" border="0" align="center">
<tr>
<td><img src="untitled3.JPG" width="492" height="109" /></td>
</tr>
</table>
<p> </p>
<table width="41%" border="1" align="center">
<tr>
<td width="8%"><div align="center">Id</div></td>
<td width="50%"><div align="center">File Name</div></td>
<td width="1%"><div align="center">ลบ</div></td>
</tr>
</table>
<?
$a=0;
while($a < $num_rows)
{
$result = mysql_fetch_array($db_query);
$id=$result[id];
$picture=$result[picture];
?>
<table width="41%" border="1" align="center">
<tr>
<td width="8%"><div align="center"> <? echo"$id";?> </div></td>
<td width="50%"><div align="center"> <a href="picture/<?echo"$picture";?>" target="_blank"> <? echo"$picture";?> </a></div></td>
<td width="1%"><div align="center"><a href="del.php ?id=<?=$id ?>&picture=<?=$picture ?>">ลบ</a></div></td>
</tr>
</table>
<?
$a++;
}
echo"<center><br>จำนวน Reccord = $num_rows</center>";
mysql_close();
?></td>
</tr>
</table>
del.php
<?
echo"$id";
$host="localhost";
$username="";
$password="";
$db="mydatabase";
$tb="picture";
mysql_connect($host, $username, $password) or die("ติดต่อฐานข้อมูลไม่ได้");// เลือกฐานข้อมูล
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้"); // คำสั่ง SQL และสั่งให้ทำงาน
$sql = "delete from $tb where id='$id' "; // กำหนดคำสั่ง SQL เพื่อลบข้อมูล
$dbquery = mysql_db_query($db, $sql) or die("ส่งคิวรีไม่ได้");
echo"$picture";
$folder="C:\AppServ\www\project\mc\picture";
unlink($folder."/".$picture);
header("location:mc2.php");
?>
เอาแค่นี้ก็ได้ ช่วยแปลงเปน .ASP หน่อยนะคับ
Date :
26 พ.ค. 2551 16:11:54
By :
puan64
ไม่ต้องไล่ทีละบรรทัดได้มั้ยครับ ไม่ต้องเอาทั้งหมดหรอก
บอกความต้องการว่าคุณอยากทำอะไร
---- การไปสู่จุดหมายเดียวกัน ไม่จำเป็นต้องใช้วิธีเดียวกันก็ได้ -----
ผมเลื่อนดูคร่าวๆ นี่คือจะเขียนหน้า อัพโหลดรูปภาพ แล้วเอาชื่อและ path ของมันไปเก็บในฐานข้อมูล
แต่เห็นแว็บๆ ว่ามีการสร้าง พาสเวิร์ดด้วย พอดีมันเยอะลายตา เลยไม่ได้ตามอ่านโดยละเอียด
เอาเป็นว่าบอกความต้องการมาได้มั้ยว่าจะทำอะไรบ้าง อาจมีตัวอย่างอื่นๆ ที่ทำได้ตรงๆ โดย asp เลย
ไม่ต้องมานั่งคอยแกะโค้ด
Date :
27 พ.ค. 2551 10:48:11
By :
yeadram
การเรียกดูไฟล์ในโฟลเดอร์
Sample1.asp
<%
Set MyDirectory=Server.CreateObject("Scripting.FileSystemObject")
Set MyFiles=MyDirectory.GetFolder(Server.MapPath("/shopping")) 'แสดงชื่อไฟล์ในโฟลเดอร์ shopping
For each filefound in MyFiles.files
%>
<% =filefound.Name %>
<br>
<%
Next
%>
ช่วยเพิ่มโค้ดสำหรับ download ไฟล์ที่แสดงให้หน่อยคับ ขอบคุณคับ
Date :
27 พ.ค. 2551 10:53:08
By :
puan64
Load balance : Server 02