|
|
|
จะสามารถกำหนดขนาดรูปที่ upload ลงในฐานข้อมูลยังไงหรอคะ?? ขนาด (กว้างxสูง) 110x125 pixels ค่ะ |
|
|
|
|
|
|
|
ต้องการกำหนดขนาดรูปที่จะuploadลงในฐานข้อมูลค่ะ ขนาด110x125 pixels ค่ะ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<?
if(copy($_FILES["filUpload"]["tmp_name"],"myfile/".$_FILES["filUpload"]["name"]))
{
echo "Copy/Upload Complete<br>";
//*** Insert Record ***//
$FilesID=$_POST['txtbook_id'];
$ISBN = $_POST['txtISBN'];
$book_author = $_POST['txtauthor'];
$book_pub=$_POST['txtpub'];
$book_date=$_POST['txtdate'];
$book_origin=$_POST['txtorigin'];
$book_detail=$_POST['txtdetail'];
$type_id=$_POST['lmName1'];
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("library");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client='tis620'");
mysql_query("SET character_set_connection='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$strSQL = "INSERT INTO books ";
$strSQL .="(FilesID,ISBN,Name,book_author,book_pub,book_date,book_origin,book_detail,FilesName,type_id)
VALUES ('$FilesID','$ISBN','".$_POST["txtName"]."','$book_author','$book_pub','$book_date','$book_origin','$book_detail','".$_FILES["filUpload"]["name"]."','$type_id')";
$objQuery = mysql_query($strSQL);
echo "<script>window.location='books.php'</script>";exit();
}
?>
<a href="books_show.php">View files</a>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2013-01-07 00:40:29 |
By :
miengkam |
View :
1139 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูตามความเห็นต่างๆ นะ
Search .. "ขนาดไฟล์ upload"
|
|
|
|
|
Date :
2013-01-07 06:21:15 |
By :
บังเอิญผ่านมาเห็น |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูครับ
Code (JavaScript)
<html>
<head>
<script>
function getImgSize(){
var img = document.getElementById('imageid');
var width = img.clientWidth;
var height = img.clientHeight;
alert(" width="+width+", height="+height);
}
</script>
</head>
<body>
<img id='imageid' onclick='getImgSize();'
src='http://zef.me/wp-content/uploads/2008/02/funny-cat.jpg'>
</body>
</html>
Go to : อยากได้ javascript เช็คขนาดรูปภาพ ค่ะ อยากได้ javascript เช็คขนาดรูปภาพ และความกว้าง ยาว ของรูปค่ะ
|
|
|
|
|
Date :
2013-01-07 10:25:39 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อิอิ
|
|
|
|
|
Date :
2013-01-07 18:00:38 |
By :
nightmans |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ซะงั้น
|
|
|
|
|
Date :
2013-01-07 20:32:28 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|