如果没有选择图像,如何使用旧图像?
当有人更新他的个人资料但没有选择要更新的图像时,它是个人资料页面,那么旧图像应该保留在那里..
应该是这样的if-else语句还是有其他方式?
//check if file is selected.
if (empty($_FILES['profilepic']))
{
//if file selected this code should run
$fileselected="file selected";
}
else
{
//this executes if file not selected
$fileselected="No File Has Been Selected";
}
echo $fileselected;
应该怎么编码??