本文整理汇总了PHP中main_front_class::attach_records方法的典型用法代码示例。如果您正苦于以下问题:PHP main_front_class::attach_records方法的具体用法?PHP main_front_class::attach_records怎么用?PHP main_front_class::attach_records使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类main_front_class
的用法示例。
在下文中一共展示了main_front_class::attach_records方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$status = 'Advertise';
}
if ($tender_details['tender_type'] == 1) {
$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;
开发者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($_SESSION['rb_uname']) || !isset($_SESSION['rb_pass']) || !isset($_SESSION['rb_pin']) || !isset($_SESSION['rb_power'])) {
$obj->redirect("index.php");
} else {
$result_login = $obj->LoginData($_SESSION['rb_power'], $_SESSION['rb_uname']);
}
if (isset($_GET['val']) && $_GET['val'] != "") {
$result = $obj->common_fetchdata('consignee', $_GET['val']);
$result_product = $obj->attach_records($_GET['val'], 'consignee_director', 'csign_id');
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="main_css/main_css.css"/>
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<style type="text/css">
*
{
margin:0;
padding:0;
}
#wrapper
{
width:1200px;
开发者ID:kalpishs,项目名称:tender_managment,代码行数:31,代码来源:firm_profile_view+(discovered-PC's+conflicted+copy+2013-05-05).php
示例3:
<?php
session_start();
require_once "main_includes/main_class.php";
$obj = new main_front_class();
if (isset($_GET['val']) && $_GET['val'] != "") {
$result = $obj->attach_records($_GET['val'], $_GET['table'], $_GET['field']);
}
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="main_includes/add_new_row.js"></script>
<link rel="stylesheet" href="main_css/main_css.css"/>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>
<style type="text/css">
</style>
<title>Directors : Rainbow Tender Managment</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$('table#pur_cnt_multipels td a.delete').click(function()
{
var delid=$(this).attr('id');
var tablename="purchaser_director";
示例4:
<?php
session_start();
require_once "../main_includes/main_class.php";
$obj = new main_front_class();
if (!isset($_SESSION['rb_uname']) || !isset($_SESSION['rb_pass']) || !isset($_SESSION['rb_pin']) || !isset($_SESSION['rb_power'])) {
$obj->redirect("index.php");
} else {
$result_login = $obj->LoginData($_SESSION['rb_power'], $_SESSION['rb_uname']);
}
if (isset($_GET['val']) && $_GET['val'] != "") {
$result = $obj->common_fetchdata('main_consignee', $_GET['val']);
$purchaser_name = $obj->Common_name_id('create_purchaser', 'purchaser_short_name', $result['main_csign_purchaser']);
$result_product = $obj->attach_records($_GET['val'], 'main_consignee_contacts', 'main_csign_id');
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="../main_css/main_css.css"/>
<script type="text/javascript" src="../js/jquery-1.9.1.min.js"></script>
<style type="text/css">
*
{
margin:0;
padding:0;
}
#wrapper
{