本文整理汇总了PHP中main_front_class::attach_recordsXYZ方法的典型用法代码示例。如果您正苦于以下问题:PHP main_front_class::attach_recordsXYZ方法的具体用法?PHP main_front_class::attach_recordsXYZ怎么用?PHP main_front_class::attach_recordsXYZ使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类main_front_class
的用法示例。
在下文中一共展示了main_front_class::attach_recordsXYZ方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$status = 'Limited';
}
if ($tender_details['tender_type'] == 2) {
$status = 'Bulletin';
}
if ($tender_details['tender_type'] == 3) {
$status = 'SPL Limited';
}
if ($tender_details['tender_type'] == 4) {
$status = 'Local Purchaser';
}
$product_details = $obj->attach_records_products($_GET['id'], 'tender_firm_product', 'tender_id');
$attachments = $obj->attach_records($_GET['id'], 'tender_attachments', 'tender_id');
$result_attachment = $obj->AttachementsInTenderRate($_GET['id']);
//$result_tender_bid_attachemnsts = $obj->common_fetch_attachement('tender_bid_attachements','tender_id',$_GET['id']);
$result_tender_bid_attachemnsts = $obj->attach_recordsXYZ($_GET['id'], 'tender_bid_attachements', 'tender_id');
if ($tender_details['firm_status'] == 1 && $tender_details['status'] != 0) {
$result_attachment_all = $obj->AttachementsInTenderRateWithoutLimit($_GET['id']);
}
if (isset($_POST['submit_uploaded']) && $_POST['key'] == $_SESSION['key']) {
$finalName = array();
$name = array();
for ($i = 0; $i < sizeof($_FILES['files']); $i++) {
$name[$i] = $_FILES['files']['name'][$i];
$tmp_name = $_FILES['files']['tmp_name'][$i];
$ext = $obj->getExtension($name[$i]);
$newName = $obj->nameGen();
$finalName[$i] = $newName . "." . $ext;
move_uploaded_file($tmp_name, "attachements/Rate_On_Print/" . $finalName[$i]);
}
$result2 = $obj->store_printed_firms_X($_GET['id'], 'tender_rate_attachements', $finalName, $name, $_SESSION['pin_id'], $_SESSION['pin_table']);
开发者ID:kalpishs,项目名称:tender_managment,代码行数:31,代码来源:tender_quot_new+(discovered-PC's+conflicted+copy+2013-05-05).php
示例2:
<?php
session_start();
require_once "main_includes/main_class.php";
$obj = new main_front_class();
if (isset($_GET['val']) && $_GET['val'] != "") {
$result = $obj->attach_recordsXYZ($_GET['val'], $_GET['table'], $_GET['field']);
}
if (isset($_POST['save'])) {
if ($_FILES['file']['size'] != 0) {
$name = $_FILES['file']['name'];
$tmp_name = $_FILES['file']['tmp_name'];
$ext = $obj->getExtension($name);
$newName = $obj->nameGen();
$finalName = $newName . "." . $ext;
move_uploaded_file($tmp_name, "attachements/po_attach_history/" . $finalName);
} else {
$finalName = 0;
$name = 0;
}
$result = $obj->Update_Po_Attachements_History($_POST['titles'], $_POST['other_title'], $finalName, $name, $_POST['id_firm_attachement']);
if ($result == 1) {
?>
<script>
window.location="Po_old_attachemnents.php?val=<?php
echo $_GET['val'];
?>
&table=<?php
echo $_GET['table'];
?>
&field=<?php