Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > ช่วยดูหั้ยหน่อยคับว่าผิดตรงไหน ไม่รู้มันผิดตรงไหนพอค้นหาข้อมูลแล้วมันไม่แสดงผลขึ้นมาให้คับ



 

ช่วยดูหั้ยหน่อยคับว่าผิดตรงไหน ไม่รู้มันผิดตรงไหนพอค้นหาข้อมูลแล้วมันไม่แสดงผลขึ้นมาให้คับ

 



Topic : 040746

Guest




ไม่รู้มันผิดตรงไหนพอค้นหาข้อมูลแล้วมันไม่แสดงผลขึ้นมาให้คับCode (PHP)
<html>
<head> 
<title>Mercury Material Transaction</title> 
</head> 
<body> 
<center>
<?
$db = "(DESCRIPTION=(ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST =192.9.150.7)(PORT = 1521)))(CONNECT_DATA=(SID=vis)))"; 
$c1 = OCILogon("apps","apps",$db);
	if($_POST["transaction_date"]==""){
			$_POST["transaction_date"]="%";
	}
	if($_POST["item_number"]==""){
			$_POST["item_number"]="%";
	}
	if($_POST["item_description"]==""){
			$_POST["item_description"]="%";
	}
	if($_POST["transaction_type_name"]==""){
			$_POST["transaction_type_name"]="%";
	}
	if($_POST["subinventory_code"]==""){
			$_POST["subinventory_code"]="%";
	}
	if($_POST["locator_name"]==""){
			$_POST["locator_name"]="%";
	}
	if($_POST["transfer_subinventory"]==""){
			$_POST["transfer_subinventory"]="%";
	}
	if($_POST["transfer_locator"]==""){
			$_POST["transfer_locator"]="%";
	}
	if($_POST["transaction_reference"]==""){
			$_POST["transaction_reference"]="%";
	}
	if($_POST["reason_name"]==""){
			$_POST["reason_name"]="%";
	}
	if($_POST["creation_date"]==""){
			$_POST["creation_date"]="%";
	}
	if($_POST["created_name"]==""){
			$_POST["created_name"]="%";
	}
	$strSQL ="SELECT * From pt_mercury_material_trans where transaction_date LIKE '".$_POST["transaction_date"]."'
	and item_number LIKE '".$_POST["item_number"]."' 
	and item_description LIKE '".$_POST["item_description"]."' 
	and transaction_type_name LIKE '".$_POST["transaction_type_name"]."'  
	and subinventory_code LIKE '".$_POST["subinventory_code"]."' 
	and locator_name LIKE '".$_POST["locator_name"]."' 
	and transfer_subinventory LIKE '".$_POST["transfer_subinventory"]."' 
	and transfer_locator LIKE '".$_POST["transfer_locator"]."'  
	and transaction_reference LIKE '".$_POST["transaction_reference"]."' 
	and reason_name LIKE '".$_POST["reason_name"]."' 
	and creation_date LIKE '".$_POST["creation_date"]."' 
	and created_name LIKE '".$_POST["created_name"]."' order by transaction_date , transaction_id";
	$objParse = OCIParse($c1, $strSQL); 
	OCIExecute($objParse,OCI_DEFAULT) or die("Can't not execute statment"); 
	?>
	<table width="600" border="1">  
		<tr>
			<td align="center">ID</td>
			<td align="center">Txn. Date</td>
			<td align="center">Item</td>
			<td align="center">Description</td>
			<td align="center">Txn.Type</td>
			<td align="center">Subinv.</td>
			<td align="center">Locator</td>
			<td align="center">Transfer Subinv.</td>
			<td align="center">Transfer Locator</td>
			<td align="center">Reference</td>
			<td align="center">Reason</td>
			<td align="center">Creation Date</td>
			<td align="center">Created Name</td>
		</tr>
		<?  
			while($objResult=OCIFetch($objParse)){
			?>
		<tr>
			<td><a href="javascript:window.showModalDialog('test1.php?transaction_id=<?= $objResult["TRANSACTION_ID"]?>' ,'','dialogWidth:1024px; dialogHeight:600px; status:no; center:yes ')"><?= $objResult["TRANSACTION_ID"]?></a></td>
			<td><?= $objResult["TRANSACTION_DATE"]?></td>
			<td><?= $objResult["ITEM_NUMBER"]?></td>
			<td><?= $objResult["ITEM_DESCRIPTION"]?></td>
			<td><?= $objResult["TRANSACTION_TYPE_NAME"]?></td>
			<td><?= $objResult["SUBINVENTORY_CODE"]?></td>
			<td><?= $objResult["LOCATOR_NAME"]?></td>
			<td><?= $objResult["TRANSFER_SUBINVENTORY"]?></td>
			<td><?= $objResult["TRANSFER_LOCATOR"]?></td>
			<td><?= $objResulte["TRANSACTION_REFERENCE"]?></td>
			<td><?= $objResult["REASON_NAME"]?></td>
			<td><?= $objResult["CREATION_DATE"]?></td>
			<td><?= $objResult["CREATED_NAME"]?></td>
		</tr>
		<?
			}
		?>
	</table>
	<?	
	ocilogoff($c1);	
	?>
	</center>
</body> 
</html>




Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-03-24 09:12:09 By : top View : 734 Reply : 7
 

 

No. 1



โพสกระทู้ ( 217 )
บทความ ( 0 )



สถานะออฟไลน์


ลองดูน่ะครับว่าได้หรือป่าว
และอีกอย่างน่ะครับการแสดงค่าที่ได้จากการ fetch ของ oracle ไม่เหมือนกัน mssql,mysql ครับ
มันใช้ $objResult["CREATED_NAME"] ไม่ได้ครับมันต่อง OCIResult($objParse,"CREATED_NAME") ครับ
<html>
<head> 
<title>Mercury Material Transaction</title> 
</head> 
<body> 
<center>
<?
$db = "(DESCRIPTION=(ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST =192.9.150.7)(PORT = 1521)))(CONNECT_DATA=(SID=vis)))"; 
$filter = "";
$c1 = OCILogon("apps","apps",$db);
	if($_POST["transaction_date"]==""){
		$filter .= "and transaction_date LIKE '".$_POST["transaction_date"]."' ";
	}
	if($_POST["item_number"]==""){
		$filter .= " and item_number LIKE '".$_POST["item_number"]."' "; 
	}
	if($_POST["item_description"]==""){
		$filter .= " and item_description LIKE '".$_POST["item_description"]."'  ";
	}
	if($_POST["transaction_type_name"]==""){
		$filter .= " and transaction_type_name LIKE '".$_POST["transaction_type_name"]."' ";
	}
	if($_POST["subinventory_code"]==""){
		$filter .= " and subinventory_code LIKE '".$_POST["subinventory_code"]."' ";
	}
	if($_POST["locator_name"]==""){
		$filter .= " and locator_name LIKE '".$_POST["locator_name"]."' ";
	}
	if($_POST["transfer_subinventory"]==""){
		$filter .= " and transfer_subinventory LIKE '".$_POST["transfer_subinventory"]."' ";
	}
	if($_POST["transfer_locator"]==""){
		$filter .= " and transfer_locator LIKE '".$_POST["transfer_locator"]."' "; 		
	}
	if($_POST["transaction_reference"]==""){
		$filter .= " and transaction_reference LIKE '".$_POST["transaction_reference"]."' ";
	}
	if($_POST["reason_name"]==""){
		$filter .= " and reason_name LIKE '".$_POST["reason_name"]."' ";
	}
	if($_POST["creation_date"]==""){
		$filter .= " and creation_date LIKE '".$_POST["creation_date"]."' ";
	}
	if($_POST["created_name"]==""){
		$filter .= " and created_name LIKE '".$_POST["created_name"]."' ";
	}
	$strSQL ="SELECT * From pt_mercury_material_trans where (1=1) ".$filter."order by transaction_date , transaction_id";
	$objParse = OCIParse($c1, $strSQL); 
	OCIExecute($objParse, OCI_DEFAULT) or die("Can't not execute statment"); 
	?>
	<table width="600" border="1">  
		<tr>
			<td align="center">ID</td>
			<td align="center">Txn. Date</td>
			<td align="center">Item</td>
			<td align="center">Description</td>
			<td align="center">Txn.Type</td>
			<td align="center">Subinv.</td>
			<td align="center">Locator</td>
			<td align="center">Transfer Subinv.</td>
			<td align="center">Transfer Locator</td>
			<td align="center">Reference</td>
			<td align="center">Reason</td>
			<td align="center">Creation Date</td>
			<td align="center">Created Name</td>
		</tr>
		<?  
			while(OCIFetch($objParse)){
			?>
		<tr>
			<td><a href="javascript:window.showModalDialog('test1.php?transaction_id=<?=OCIResult($objParse,"TRANSACTION_ID")?>' ,'','dialogWidth:1024px; dialogHeight:600px; status:no; center:yes ')"><?=OCIResult($objParse,"TRANSACTION_ID")?></a></td>
			<td><?=OCIResult($objParse,"TRANSACTION_DATE")?></td>
			<td><?=OCIResult($objParse,"ITEM_NUMBER")?></td>
			<td><?=OCIResult($objParse,"ITEM_DESCRIPTION")?></td>
			<td><?=OCIResult($objParse,"TRANSACTION_TYPE_NAME")?></td>
			<td><?=OCIResult($objParse,"SUBINVENTORY_CODE")?></td>
			<td><?=OCIResult($objParse,"LOCATOR_NAME")?></td>
			<td><?=OCIResult($objParse,"TRANSFER_SUBINVENTORY")?></td>
			<td><?=OCIResult($objParse,"TRANSFER_LOCATOR")?></td>
			<td><?=OCIResult($objParse,"TRANSACTION_REFERENCE")?></td>
			<td><?=OCIResult($objParse,"REASON_NAME")?></td>
			<td><?=OCIResult($objParse,"CREATION_DATE")?></td>
			<td><?=OCIResult($objParse,"CREATED_NAME")?></td>
		</tr>
		<?
			}
		?>
	</table>
	<?	
	ocilogoff($c1);	
	?>
	</center>
</body> 
</html>








Date : 2010-03-24 09:30:19 By : windersun
 


 

No. 2



โพสกระทู้ ( 42 )
บทความ ( 0 )



สถานะออฟไลน์


มันก้อยังไม่แสดงผลออกมาอ่ะคับ
Date : 2010-03-24 09:43:00 By : top
 

 

No. 3



โพสกระทู้ ( 217 )
บทความ ( 0 )



สถานะออฟไลน์


ลอง echo $strSQL แล้วลองเอาไป run ใน sqlplus ดูครับว่าได้ค่ามาหรือป่าว
Date : 2010-03-24 09:50:33 By : windersun
 


 

No. 4



โพสกระทู้ ( 217 )
บทความ ( 0 )



สถานะออฟไลน์


<html>
<head> 
<title>Mercury Material Transaction</title> 
</head> 
<body> 
<center>
<?
$db = "(DESCRIPTION=(ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST =192.9.150.7)(PORT = 1521)))(CONNECT_DATA=(SID=vis)))"; 
$filter = "";
$c1 = OCILogon("apps","apps",$db);
	if($_POST["transaction_date"]==""){
		$filter .= "and transaction_date LIKE '%".$_POST["transaction_date"]."%' ";
	}
	if($_POST["item_number"]==""){
		$filter .= " and item_number LIKE '%".$_POST["item_number"]."%' "; 
	}
	if($_POST["item_description"]==""){
		$filter .= " and item_description LIKE '%".$_POST["item_description"]."%'  ";
	}
	if($_POST["transaction_type_name"]==""){
		$filter .= " and transaction_type_name LIKE '%".$_POST["transaction_type_name"]."%' ";
	}
	if($_POST["subinventory_code"]==""){
		$filter .= " and subinventory_code LIKE '%".$_POST["subinventory_code"]."%' ";
	}
	if($_POST["locator_name"]==""){
		$filter .= " and locator_name LIKE '%".$_POST["locator_name"]."%' ";
	}
	if($_POST["transfer_subinventory"]==""){
		$filter .= " and transfer_subinventory LIKE '%".$_POST["transfer_subinventory"]."%' ";
	}
	if($_POST["transfer_locator"]==""){
		$filter .= " and transfer_locator LIKE '%".$_POST["transfer_locator"]."%' "; 		
	}
	if($_POST["transaction_reference"]==""){
		$filter .= " and transaction_reference LIKE '%".$_POST["transaction_reference"]."%' ";
	}
	if($_POST["reason_name"]==""){
		$filter .= " and reason_name LIKE '%".$_POST["reason_name"]."%' ";
	}
	if($_POST["creation_date"]==""){
		$filter .= " and creation_date LIKE '%".$_POST["creation_date"]."%' ";
	}
	if($_POST["created_name"]==""){
		$filter .= " and created_name LIKE '%".$_POST["created_name"]."%' ";
	}
	$strSQL ="SELECT * From pt_mercury_material_trans where (1=1) ".$filter."order by transaction_date , transaction_id";
	$objParse = OCIParse($c1, $strSQL); 
	OCIExecute($objParse, OCI_DEFAULT) or die("Can't not execute statment"); 
	?>
	<table width="600" border="1">  
		<tr>
			<td align="center">ID</td>
			<td align="center">Txn. Date</td>
			<td align="center">Item</td>
			<td align="center">Description</td>
			<td align="center">Txn.Type</td>
			<td align="center">Subinv.</td>
			<td align="center">Locator</td>
			<td align="center">Transfer Subinv.</td>
			<td align="center">Transfer Locator</td>
			<td align="center">Reference</td>
			<td align="center">Reason</td>
			<td align="center">Creation Date</td>
			<td align="center">Created Name</td>
		</tr>
		<?  
			while(OCIFetch($objParse)){
			?>
		<tr>
			<td><a href="javascript:window.showModalDialog('test1.php?transaction_id=<?=OCIResult($objParse,"TRANSACTION_ID")?>' ,'','dialogWidth:1024px; dialogHeight:600px; status:no; center:yes ')"><?=OCIResult($objParse,"TRANSACTION_ID")?></a></td>
			<td><?=OCIResult($objParse,"TRANSACTION_DATE")?></td>
			<td><?=OCIResult($objParse,"ITEM_NUMBER")?></td>
			<td><?=OCIResult($objParse,"ITEM_DESCRIPTION")?></td>
			<td><?=OCIResult($objParse,"TRANSACTION_TYPE_NAME")?></td>
			<td><?=OCIResult($objParse,"SUBINVENTORY_CODE")?></td>
			<td><?=OCIResult($objParse,"LOCATOR_NAME")?></td>
			<td><?=OCIResult($objParse,"TRANSFER_SUBINVENTORY")?></td>
			<td><?=OCIResult($objParse,"TRANSFER_LOCATOR")?></td>
			<td><?=OCIResult($objParse,"TRANSACTION_REFERENCE")?></td>
			<td><?=OCIResult($objParse,"REASON_NAME")?></td>
			<td><?=OCIResult($objParse,"CREATION_DATE")?></td>
			<td><?=OCIResult($objParse,"CREATED_NAME")?></td>
		</tr>
		<?
			}
		?>
	</table>
	<?	
	ocilogoff($c1);	
	?>
	</center>
</body> 
</html>



Date : 2010-03-24 09:59:29 By : windersun
 


 

No. 5

Guest


if($_POST["transaction_date"]==""){
$filter .= "and transaction_date LIKE '%'||".$_POST["transaction_date"]."||'%' ";
}

ลองใส่ ตัวเชื่อมประโยคดูครับ
Date : 2010-03-24 11:00:28 By : exza_a
 


 

No. 6

Guest


----------------------------------------------------------------------------------------------------
Date : 2010-03-24 11:05:20 By : ll
 


 

No. 7



โพสกระทู้ ( 42 )
บทความ ( 0 )



สถานะออฟไลน์


ลองแล้วไม่ได้คับมันขึ้น errorคับ
Date : 2010-03-24 15:25:24 By : lukchang
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยดูหั้ยหน่อยคับว่าผิดตรงไหน ไม่รู้มันผิดตรงไหนพอค้นหาข้อมูลแล้วมันไม่แสดงผลขึ้นมาให้คับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 02
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่