本文整理汇总了PHP中Update::editData方法的典型用法代码示例。如果您正苦于以下问题:PHP Update::editData方法的具体用法?PHP Update::editData怎么用?PHP Update::editData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Update
的用法示例。
在下文中一共展示了Update::editData方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Upload
$uploadsDirecotry = "resources/uploads/";
$maxSize = 4000000;
$upload = new Upload($file, $allowedExts, $uploadsDirecotry, $maxSize);
$upload->uploadFiles();
$editPage['page_image'] = $uploadsDirecotry . $upload->getFileUrl();
} catch (Exception $exc) {
$exc->getMessage();
}
} else {
$editPage['page_image'] = 'resources/images/logo.png';
}
$tabename = "pages";
$id = $_GET['id'];
try {
$updatePage = new Update($editPage, $tabename);
$updatedPage = $updatePage->editData($id);
if ($updatedPage) {
echo '<script type="text/javascript"> alert("The New Page was updated !"); history.back();</script>';
}
} catch (Exception $exc) {
echo $exc->getMessage();
}
}
}
} else {
$tablename = "pages";
$displaypages = new Display($tablename);
$PagesDataDisplay = $displaypages->getAllData();
for ($i = 0; $i < count($PagesDataDisplay); $i++) {
$id = $PagesDataDisplay[$i]['sectionId'];
$display = new Display('sections');
示例2: Display
// Edit:
if (isset($_GET['action']) and $_GET['action'] == "edit") {
$id = $_GET['id'];
$tablename = "sections";
$editSecDis = new Display($tablename);
$recSecdata = $editSecDis->getRecordByID($id);
include 'veiws/editSection.php';
}
if (isset($_POST['submit']) && $_POST['submit'] == "Edit") {
//sections: id, sectionName, sectionStaus, sectionLocation, sectionDesc, sectionDate, username
$SecDataedit['sectionName'] = $_POST['sectionName'];
$SecDataedit['sectionStaus'] = $_POST['sectionStaus'];
$SecDataedit['sectionLocation'] = $_POST['sectionLocation'];
$SecDataedit['sectionDesc'] = $_POST['sectionDesc'];
try {
$tablename = "sections";
$SecUpdate = new Update($SecDataedit, $tablename);
$updtSec = $SecUpdate->editData($id);
if ($updtSec) {
echo '<script type="text/javascript"> alert("The Section was updated !"); history.back();</script>';
}
} catch (Exception $exc) {
echo $exc->getMessage();
}
}
} else {
$tablename = "sections";
$displaySec = new Display($tablename);
$SecDataDisplay = $displaySec->getAllData();
include 'veiws/sections.php';
}