ช่วยดู code ให้หน่อยครับ มันขึ้น Fatal error ไม่ทราบว่าผิดตรงไหน
Fatal error: Cannot redeclare upfile() (previously declared in /home/codezquare/domains/codezquare.com/public_html/file/upload/upfile.php:106) in /home/codezquare/domains/codezquare.com/public_html/file/upload/upfile.php on line 128
Code (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Addfile</title>
</head>
<form name="form1" method="get" action="index.php?option=com_jumi&fileid=11" enctype="multipart/form-data"> //ที่ action="index.php?option=com_jumi&fileid=11" เพราะผมเขียนmodule ลงในjoomla หน่ะครับ
<body>
<?
@session_start();
if (isset($_POST[btnSubmit])){
if (check_form($err)) {
upfile();
echo "Success";
}
}
include("cn_sql.php");
if (!$cn)
{
die('Could not connect: ' . mysql_error());
}
$getget = $_GET["subjectname"];
$result = mysql_query("SELECT subjectid,subjectname FROM `Subject` ");
?>
<table border='0' width="630" cellpadding="0" cellspacing="0">
<tr>
<td hight='25'>ชื่อไฟล์ :</td>
<td><input type='textbox' name='filename'><?=$err['filename'];?><br></td>
</tr>
<tr>
<td><label for='choosefile'>ไฟล์ :</label></td>
<td><input type='file' name='fileupload'><?=$err['fileupload'];?><br></td>
</tr>";
<tr><td>วิชา :</td><td><select name='subjectid' > ";
<?
while($row = mysql_fetch_array($result))
{
$subname = array();
$a = 1;
$subname = explode("/",$row["subjectname"]);
foreach($subname as $name){
if($a==1)
$edit_name = $name;
else
continue;
?>
<option value="<?=$row[subjectid];?>"><?=$edit_name;?></option>
<?
$a++;
}
}?>
</select></td></tr>";
<?
include("cn_sql.php");
if (!$cn)
{
die('Could not connect: ' . mysql_error());
}
$rst = mysql_query("SELECT typeid,typename FROM `TypeFile` ");
?>
<tr><td>หมวดหมู่</td><td><select name='typeid'>";
<?
while($row = mysql_fetch_array($rst))
{
$typename = array();
$typeid = array();
$a = 1;
$typename = $row["typename"];
$typeid = $row["typeid"];
?>
<option value="<?=$typeid;?>"><?=$typename;?></option>
<?
$a++;
}
?>
<?
$user =& JFactory::getUser();
$username="{$user->name}";
$now = date("d/m/Y");
?>
</select></td></tr>";
<tr><td>รายละเอียด :</td><td><TEXTAREA NAME='detail' COLS=25 ROWS=4></TEXTAREA>
</td></tr>";
<tr><td>โดย</td><td><label for='user'><?=$username;?></label></td></tr>";
<tr><td>วันที่</td><td><label for='user'><?=$now;?></label></td></tr>";
<tr><td></td><td><input name='btnSubmit' type='submit' value='Submit'></td></tr>";
</table><br>
<?
function upfile(){
include("cn_sql.php");
if (!$cn)
{
die('Could not connect: ' . mysql_error());
}
$subjectid =$_POST["subjectid"];
$path = "upload/myfile/".$subjectid."/".$_FILES["fileupload"]["name"];
$filename= $_POST["filename"];
$now = date("d/m/Y");
$edit= date("d/m/Y");
$type = $_POST["typeid"];
$detail = $_POST["detail"];
if(move_uploaded_file($_FILES["fileupload"]["tmp_name"],"upload/myfile/".$subjectid."/".$_FILES["fileupload"]["name"]))
{
echo "Copy/Upload Complete";
//echo "$";
$user =& JFactory::getUser();
$userid="{$user->id}";
$rst = mysql_query("INSERT INTO File VALUES('','{$filename}','{$path}','{$subjectid}','{$type}','{$now}','{$edit}','{$usernm}','{$detail}');");
}
}
function check_form(&$err) {
$aa ='<img src="img/siren1.gif">';
$required = array("filename" => "filename","fileupload" => "fileupload");
$err = array();
foreach ($required as $field => $label) {
if ($_POST[$field] == "") {
$err[$field] = "$aa กรุณากรอกให้ครบถ้วน<br>";
}
}
if (count($err) > 0)
return FALSE;
else
return TRUE;
}
?>
</form>
</body>
</html>
Tag : - - - -
Date :
2010-06-02 13:28:49
By :
isolate
View :
862
Reply :
4
VALUES('','{$filename}','{$path}','{$subjectid}','{$type}'
ไอ้พวกนี้ เอา { กับ } ออกให้หมด ครับ
Date :
2010-06-02 14:30:34
By :
deawx
เอาออกแล้วครับ แต่ยังขึ้น Error เหมือนเดิม
Date :
2010-06-02 14:37:45
By :
isolate
/home/codezquare/domains/codezquare.com/public_html/โฟลเดอร์ที่เก็บไฟล์ที่อัพโหลด/
***ไม่งั้นลองใส่ path ที่จะเก็บไฟล์แบบเต็มๆๆดูครับ
Date :
2010-06-02 15:24:58
By :
manop_cs
ปัญหา อยู่ที่ไฟล์นี้ครับ upfile.php มันบอกว่ามีการประกาศ function upfile() ซ้ำ ที่บรรทัด 128 ซึ่งมีการประกาศไว้ที่บรรทัด 106 ก่อนแล้ว ลองเช็คดูตามนี้คับ
Date :
2010-06-02 15:49:14
By :
kerb
Load balance : Server 02