|
|
|
ภาพไม่ลงค่ะ code แบบนี้อ่าพี่แต่ภาพไม่ลงและชื่อก้อไม่ลงฐานอ่า |
|
|
|
|
|
|
|
code แบบนี้อ่าพี่แต่ภาพไม่ลงและชื่อก้อไม่ลงฐานอ่า
add
Code (PHP)
<form action="save_news.php" method="post" id="form1" name="form1" enctype="multipart/form-data">
<table width="700">
<tr>
<td colspan="2" bgcolor="#EEEEEE"><span class="head13blueBold">เพิ่มข้อมูลข่าวสาร </span></td>
</tr>
<tr>
<td class="narmal3old"><div align="right">ถึง <span class="style2">(To)</span> : </div></td>
<td><div align="left">
<select name="to" id="to">
<option>เลือกประเภทผู้ชม</option>
<option value="1">ทั่วไป</option>
<option value="2">โรงเรียน</option>
<option value="3">อาจารย์</option>
</select>
</div></td>
</tr>
<tr>
<td width="217" class="narmal3old"><div align="right"><span class="style9">หัวข้อข่าวสาร</span><span class="style2"> (Topic)</span><strong> : </strong><br />
</div></td>
<td width="471"><label>
<div align="left">
<input name="Topic" type="text" id="Topic" />
<span class="head13RedBold">*</span></div>
</label></td>
</tr>
<tr>
<td class="narmal3old"><div align="right"><span class="style9">รูปภาพ </span><span class="style2">(Images)</span><span class="style9">:</span></div></td>
<td>
<p align="left">
<input type="hidden" name="Max_size" value="50000" />
<input name="Images_Con" type="file" id="Images_Con" size="20"/>
<span class="style15"><font color="#FF0000" class="head13RedBold"><อัพโหลดภาพ.gif หรือ .jpg></font></span></p> </td>
</tr>
<tr>
<td class="narmal3old"><div align="right"><strong>รายละเอียด <span class="style3">(Detail news)</span> : </strong></div></td>
<td><label>
<div align="left">
<? $oFCKeditor = new FCKeditor('Detail') ;
$oFCKeditor->BasePath = '../FCKeditor/';
$oFCKeditor->Width = '100%' ;
$oFCKeditor->Height = '450' ;
$oFCKeditor->Create(); ?>
<!--<textarea name="Detail" cols="50" rows="10" id="Detail"></textarea>-->
</div>
</label></td>
</tr>
<tr>
<td class="narmal3old"><div align="right"><strong>วันที่โพส<span class="style3"> (Date Post)</span> : </strong></div></td>
<td><label>
<div align="left">
<input name="Date_Post" type="text" id="Date_Post" readonly="true" value="<? echo date('m/d/Y');?>" />
</div>
</label></td>
</tr>
<tr>
<td colspan="2"><label>
<div align="center">
<input type="submit" name="Submit" value="SAVE" />
<input type="reset" name="Submit2" value="CLEAR" />
</div>
</label></td>
</tr>
</table>
</form>
save
Code (PHP)
$date = date("U");
if(isset($_FILES["Images_Con"])){
$Images_Con=$_FILES["Images_Con"];
$type = getimagesize($Images_Con);
if($type[2] == 1) {
$image = $date."_img.gif";
} else if($type[2] == 2) {
$image = $date."_img.jpg";
}
copy($Images_Con, "images_news/$image"); //????????????????????????? images
chmod("images_news/$image", 0664);
$Images_Con=$image;
$sql = mysql_query("INSERT INTO News (ID_News,ID_Ad,Topic_News,Detail_News,Images_news,Date_News,To_News)
VALUES('$ID_News','$id','$Topic','$Detail','$Images_Con','$Date_Post','$to')");
}else{
$Images_Con= '1_img.jpg';
$sql = mysql_query("INSERT INTO News (ID_News,ID_Ad,Topic_News,Detail_News,Images_news,Date_News,To_News)
VALUES('$ID_News','$id','$Topic','$Detail','$Images_Con','$Date_Post','$to')");
}
Tag : - - - -
|
|
|
|
|
|
Date :
2010-01-19 13:37:59 |
By :
LuckyStar |
View :
776 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$type = getimagesize($Images_Con['tmp_name']);
|
|
|
|
|
Date :
2010-01-19 14:36:22 |
By :
xbeginner01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$Images_Con=$_FILES["Images_Con"];
ไม่แน่ใจนะ แต่รู้สึกว่ามันไม่ได้ค่าที่เป็นชื่อมา แล้วมันจา
copy($Images_Con, "images_news/$image"); ได้เหรอ
เคยเห็นแต่ $Images_Con=$_FILES["Images_Con"]["name"];
|
|
|
|
|
Date :
2010-01-19 14:41:58 |
By :
zenix |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองใช้ $Images_Con=$_FILES["Images_Con"]["tmp_name"]; ค่ะ
|
|
|
|
|
Date :
2010-01-19 15:13:54 |
By :
ultrasiam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เย้ได้แล้วขอบคุณมากๆเลยค่ะพี่
|
|
|
|
|
Date :
2010-01-19 16:46:52 |
By :
LuckyStar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|