这是我的页面
<html>
<span>Attached File :</span>
<input type="file" name="fileAttach" id="fileAttach" value="" />
</html>
在数据库页面中我有这样的
<?php
$file =$_FILES['fileAttach']['name'];
$ext = substr($file, strrpos($file, '.') + 1);
$filename=date('YmdHis').".".$ext;
$imageName=move_uploaded_file($_FILES['fileAttach']['tmp_name'],"photo/".$filename);
$strQry="insert into table(photo) values('".$filename."')";
?>
在将这张照片插入数据库之前,我想以特定的宽度和高度调整该照片的大小。如何调整大小并将调整大小的图像插入数据库。