当前位置: 首页>>代码示例>>PHP>>正文


PHP Update::editData方法代码示例

本文整理汇总了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');
开发者ID:jeremywong1992,项目名称:awebarts1-93,代码行数:31,代码来源:C_Pages.php

示例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';
}
开发者ID:web-slawek,项目名称:matnercars,代码行数:31,代码来源:C_Sections.php


注:本文中的Update::editData方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。