Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > มีปัญหาเรื่อง การมูฟไฟล์อีกแร้ว ช่วยแก้ค่าให้หน่อยสิ T-T ช่วยทีน๊า



 

มีปัญหาเรื่อง การมูฟไฟล์อีกแร้ว ช่วยแก้ค่าให้หน่อยสิ T-T ช่วยทีน๊า

 



Topic : 062436

Guest




Code (PHP)
<tr valign="baseline">
      <td nowrap="nowrap" align="right">รูปภาพ</td>
      <td><input type="file" name="images" value="<?php echo htmlentities($row_Recordset1['images'], ENT_COMPAT, 'utf-8'); 
move_uploaded_file($_FILES["images"]["tmp_name"],"../images/boss/".$_FILES["images"]["name"])?>" size="32" /></td>
    </tr>




Tag : PHP, MySQL







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-06-28 12:34:35 By : MermaidMelody View : 726 Reply : 3
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

code คุณมันแปลก ๆ น่ะครับ และ input type="file" มันใส่ค่า default value ไม่ได้น่ะครับ

Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<?
if(move_uploaded_file($_FILES["filUpload"]["tmp_name"],"myfile/".$_FILES["filUpload"]["name"]))
{
	echo "Copy/Upload Complete";
}

?>
</body>
</html>


Go to : PHP File Field Upload






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-28 12:57:20 By : webmaster
 


 

No. 2

Guest


งี้ควรแทรกตรงไหนดีหรา ขอแนวทางหน่อยจิ T-T ติดอยู่แค่เรื่องเดียวเอง

Code (PHP)
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) {
  $updateSQL = sprintf("UPDATE boss SET bname=%s, blastname=%s, bposition=%s, images=%s WHERE boss=%s",
                       GetSQLValueString($_POST['bname'], "text"),
                       GetSQLValueString($_POST['blastname'], "text"),
                       GetSQLValueString($_POST['bposition'], "text"),
                       GetSQLValueString($_POST['images'], "text"),
                       GetSQLValueString($_POST['boss'], "text"));

  mysql_select_db($database_Melody, $Melody);
  $Result1 = mysql_query($updateSQL, $Melody) or die(mysql_error());
}


<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
<table align="center">
<tr valign="baseline">
<td nowrap="nowrap" align="right">ชื่อ</td>
<td><input type="text" name="bname" value="<?php echo htmlentities($row_Recordset1['bname'], ENT_COMPAT, 'utf-8'); ?>" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">นามสกุล</td>
<td><input type="text" name="blastname" value="<?php echo htmlentities($row_Recordset1['blastname'], ENT_COMPAT, 'utf-8'); ?>" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">ตำแหน่ง</td>
<td><input type="text" name="bposition" value="<?php echo htmlentities($row_Recordset1['bposition'], ENT_COMPAT, 'utf-8'); ?>" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">รูปภาพ</td>
<td><input type="file" name="images" value="<?php echo htmlentities($row_Recordset1['images'], ENT_COMPAT, 'utf-8');
?>" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">&nbsp;</td>
<td><input type="submit" value="อัพเดท" /></td>
</tr>
</table>
<input type="hidden" name="MM_update" value="form1" />
<input type="hidden" name="boss" value="<?php echo $row_Recordset1['boss']; ?>" />
</form>
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-28 13:08:15 By : MermaidMelody
 

 

No. 3

Guest


เต็มๆละกาน T-T

Code (PHP)
<?php require_once('../Connections/Melody.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}

$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) {
  $updateSQL = sprintf("UPDATE boss SET bname=%s, blastname=%s, bposition=%s, images=%s WHERE boss=%s",
                       GetSQLValueString($_POST['bname'], "text"),
                       GetSQLValueString($_POST['blastname'], "text"),
                       GetSQLValueString($_POST['bposition'], "text"),
                       GetSQLValueString($_POST['images'], "text"),
                       GetSQLValueString($_POST['boss'], "text"));

  mysql_select_db($database_Melody, $Melody);
  $Result1 = mysql_query($updateSQL, $Melody) or die(mysql_error());
}

mysql_select_db($database_Melody, $Melody);
mysql_query("SET NAMES UTF8");
$query_Recordset1 = "SELECT * FROM boss";
$Recordset1 = mysql_query($query_Recordset1, $Melody) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!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" />
<style type="text/css">
.textfield {
	color: #06C;
	text-decoration: none;
	background-color: #A1D4E9;
	border-top-color: #A1D4E9;
	border-right-color: #A1D4E9;
	border-bottom-color: #A1D4E9;
	border-left-color: #A1D4E9;
}
.word-wrap {
word-wrap: break-word;
} 

</style>
<title>Transmission Operation and Maintenance 1</title>
</head>

<body>
<table width="802"><tr><td width="191">

<table width="190" bgcolor="#94D0EA" bordercolor="#A1D4E9" border="1" cellspacing="0" cellpadding="0"><tr><td width="190" height="25" bgcolor="#94D0EA" align="center" background="../images/test.jpg"><div align="left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="headmenu">หัวหน้าฝ่าย</span></div></td>
              </tr>
            <tr>
            
              <td height="242" bgcolor="#94D0EA"><div align="center"><br />
             <table width="127" height="164" border="1">
                  <tr>
                    <td valign="middle" align="center" height="160"><?php echo "<a href='/toam/images/boss/".$row_Recordset1['images']."'>"."<img src='/toam/images/boss/".$row_Recordset1['images']."'width='92%' height='94%'>" ; ?>
                    </td>
               </tr>
                </table>
                
              <pre><b><?php echo $row_Boss['bname']." ".$row_Boss['blastname']; ?></b>
<?php echo $row_Boss['bposition']; ?></pre></div></td>
  </tr>
</table>
    <td width="30">&nbsp;</td>
<td width="561">
<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
  <table align="center">
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">ชื่อ</td>
      <td><input type="text" name="bname" value="<?php echo htmlentities($row_Recordset1['bname'], ENT_COMPAT, 'utf-8'); ?>" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">นามสกุล</td>
      <td><input type="text" name="blastname" value="<?php echo htmlentities($row_Recordset1['blastname'], ENT_COMPAT, 'utf-8'); ?>" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">ตำแหน่ง</td>
      <td><input type="text" name="bposition" value="<?php echo htmlentities($row_Recordset1['bposition'], ENT_COMPAT, 'utf-8'); ?>" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">รูปภาพ</td>
      <td><input type="file" name="images" value="<?php echo htmlentities($row_Recordset1['images'], ENT_COMPAT, 'utf-8'); 
?>" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">&nbsp;</td>
      <td><input type="submit" value="อัพเดท" /></td>
    </tr>
  </table>
  <input type="hidden" name="MM_update" value="form1" />
  <input type="hidden" name="boss" value="<?php echo $row_Recordset1['boss']; ?>" />
</form>
</td></tr></table>

</body>
</html>
<?php
mysql_free_result($Recordset1);
?>

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-28 13:11:09 By : MermaidMelody
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : มีปัญหาเรื่อง การมูฟไฟล์อีกแร้ว ช่วยแก้ค่าให้หน่อยสิ T-T ช่วยทีน๊า
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่