當前位置: 首頁>>代碼示例>>PHP>>正文


PHP saveform函數代碼示例

本文整理匯總了PHP中saveform函數的典型用法代碼示例。如果您正苦於以下問題:PHP saveform函數的具體用法?PHP saveform怎麽用?PHP saveform使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了saveform函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: headhtml

<?php

require 'global.php';
headhtml();
echo '<div class="nav" style="display:;"><a href="?">首頁</a><a href="?action=addform&p_cid=';
echo $p_cid;
echo '">添加</a></div>
';
$action = $_GET['action'];
switch ($action) {
    case 'saveform':
        saveform();
        break;
    case 'addform':
        addform($action);
        break;
    case 'modify':
        addform($action);
        break;
    case 'del':
        $db->query("delete from ve123_dh_goodlinks where link_id='" . intval($_GET['link_id']) . "'");
        break;
}
echo '<table width="100%" border="0" cellpadding="3" cellspacing="1" class="tablebg">

  <tr>
    <th width="50">ID</th>
    <th>分類名稱</th>
    <th width="80">操作</th>
  </tr>
  ';
開發者ID:tanny2015,項目名稱:DataStructure,代碼行數:31,代碼來源:dh_goodlinks.php

示例2: snyggve_get_latest

    }
    echo '<br style="clear: both;" />' . "\n";
    echo '</div>' . "\n";
}
function snyggve_get_latest()
{
    $query = 'SELECT id, title FROM snyggve ORDER by ID DESC LIMIT 12';
    $result = mysql_query($query) or die(report_sql_error($query, __FILE__, __LINE__));
    while ($data = mysql_fetch_assoc($result)) {
        $items[] = $data;
    }
    return $items;
}
if ($_GET['action'] == 'upload' && login_checklogin()) {
    $identifier = displace_image();
    saveform($identifier);
} elseif ($_GET['action'] == 'save' && login_checklogin()) {
    $id = saveimage();
    jscript_location('?action=view_image&image_id=' . $id);
} elseif ($_GET['action'] == 'view_image') {
    $user = view_image($_GET['image_id']);
    if (!view_album($user)) {
        echo '<h2>Senast uppladdat till Snyggve</h2>' . "\n";
        snyggve_list_items(snyggve_get_latest());
    }
    if (login_checklogin()) {
        uploadform();
    }
} elseif ($_GET['action'] == 'view_user' && is_numeric($_GET['user_id'])) {
    snyggve_intro();
    view_album($_GET['user_id'], 'fulhack');
開發者ID:Rojk,項目名稱:hamsterpaj,代碼行數:31,代碼來源:snyggve.php


注:本文中的saveform函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。