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,037

HOME > PHP > PHP Forum > สมัครสมาชิกแล้ว สร้างบาร์โค้ดให้สมาชิก หลังจากที่สมัครสมาชิกแล้ว ให้สร้างบาร์โค้ดให้กับสมาชิกทันที



 

สมัครสมาชิกแล้ว สร้างบาร์โค้ดให้สมาชิก หลังจากที่สมัครสมาชิกแล้ว ให้สร้างบาร์โค้ดให้กับสมาชิกทันที

 



Topic : 100957



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



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




คือผมอยากทำบาร์โค้ดให้สมาชิกแต่ละคน
หลังจากที่สมัครสมาชิกแล้ว ให้สร้างบาร์โค้ดให้กับสมาชิกทันที

ช่วยแนะนำด้วยครับ



Tag : PHP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2013-09-25 11:16:46 By : kunnawut View : 1174 Reply : 14
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

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

Barcode แบบไหนครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 12:56:37 By : mr.win
 


 

No. 2



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



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


เหมือนบัตรนักศึกษาครับ

ที่แบบว่า กรอกข้อมูล เสร็จ ก็ออกเป็นบัตรสมาชิก มีบาร์โค้ดด้วยครับ

ผมมีที่ยิงบาร์โค้ดแต่ทำไม่เป็น
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 15:09:33 By : kunnawut
 

 

No. 3

Guest


ตั้งชื่อเพจนี้ว่า Barcode39.php
-------------------------------------------------
Code (PHP)
<?php
/**
 * Barcode39 - Code 39 Barcode Image Generator
 * 
 * @package Barcode39
 * @category Barcode39
 * @name Barcode39
 * @version 1.0
 * @author Shay Anderson 05.11
 * @link http://www.shayanderson.com/php/php-barcode-generator-class-code-39.htm
 * @license http://www.gnu.org/licenses/gpl.html GPL License
 * This is free software and is distributed WITHOUT ANY WARRANTY
 */
final class Barcode39 {
	/**
	 * Code 39 format 2 specifications
	 */
	const f2B = "11";
	const f2W = "00";
	const f2b = "10";
	const f2w = "01";

	/**
	 * Barcode code
	 *
	 * @var array $_code
	 */
	private $_code = array();

	/**
	 * Code 39 matrix
	 *
	 * @var array $_codes_39
	 */
	private $_codes_39 = array(
		32 => '100011011001110110',
		36 => '100010001000100110',
		37 => '100110001000100010',
		42 => '100010011101110110',
		43 => '100010011000100010',
		45 => '100010011001110111',
		46 => '110010011001110110',
		47 => '100010001001100010',
		48 => '100110001101110110',
		49 => '110110001001100111',
		50 => '100111001001100111',
		51 => '110111001001100110',
		52 => '100110001101100111',
		53 => '110110001101100110',
		54 => '100111001101100110',
		55 => '100110001001110111',
		56 => '110110001001110110',
		57 => '100111001001110110',
		65 => '110110011000100111',
		66 => '100111011000100111',
		67 => '110111011000100110',
		68 => '100110011100100111',
		69 => '110110011100100110',
		70 => '100111011100100110',
		71 => '100110011000110111',
		72 => '110110011000110110',
		73 => '100111011000110110',
		74 => '100110011100110110',
		75 => '110110011001100011',
		76 => '100111011001100011',
		77 => '110111011001100010',
		78 => '100110011101100011',
		79 => '110110011101100010',
		80 => '100111011101100010',
		81 => '100110011001110011',
		82 => '110110011001110010',
		83 => '100111011001110010',
		84 => '100110011101110010',
		85 => '110010011001100111',
		86 => '100011011001100111',
		87 => '110011011001100110',
		88 => '100010011101100111',
		89 => '110010011101100110',
		90 => '100011011101100110'
	);

	/**
	 * Width of wide bars in barcode (should be 3:1)
	 *
	 * @var int $barcode_bar_thick
	 */
	public $barcode_bar_thick = 3;

	/**
	 * Width of thin bars in barcode (should be 3:1)
	 *
	 * @var int $barcode_bar_thin
	 */
	public $barcode_bar_thin = 1;

	/**
	 * Barcode background color (RGB)
	 *
	 * @var array $barcode_bg_rgb
	 */
	public $barcode_bg_rgb = array(255, 255, 255);

	/**
	 * Barcode height
	 *
	 * @var int $barcode_height
	 */
	public $barcode_height = 80;

	/**
	 * Barcode padding
	 *
	 * @var int $barcode_padding
	 */
	public $barcode_padding = 5;

	/**
	 * Use barcode text flag
	 *
	 * @var bool $barcode_text
	 */
	public $barcode_text = true;

	/**
	 * Barcode text size
	 *
	 * @var int $barcode_text_size
	 */
	public $barcode_text_size = 3;

	/**
	 * Use dynamic barcode width (will auto set width)
	 *
	 * @var bool $barcode_use_dynamic_width
	 */
	public $barcode_use_dynamic_width = true;

	/**
	 * Barcode width (if not using dynamic width)
	 *
	 * @var int $barcode_width
	 */
	public $barcode_width = 400;

	/**
	 * Set and format params
	 *
	 * @param string $code
	 */
	public function  __construct($code = null) {
		// format and code
		$code = (string)strtoupper($code);

		// convert code to code array
		$i = 0;
		while(isset($code[$i])) {
			$this->_code[] = $code[$i++];
		}

		// add start and stop symbols
		array_unshift($this->_code, "*");
		array_push($this->_code, "*");
	}

	/**
	 * Draw barcode (and save as file if filename set)
	 *
	 * @param string $filename (optional)
	 * @return bool
	 */
	public function draw($filename = null) {
		// check if GB library functions installed
		if(!function_exists("imagegif")) {
			return false;
		}

		// check for valid code
		if(!is_array($this->_code) || !count($this->_code)) {
			return false;
		}

		// bars coordinates and params
		$bars = array();

		// position pointer
		$pos = $this->barcode_padding;

		// barcode text
		$barcode_string = null;

		// set code 39 codes
		$i = 0;
		foreach($this->_code as $k => $v) {
			// check for valid code
			if(isset($this->_codes_39[ord($v)])) {
				// valid code add code 39, also add separator between characters if not first character
				$code = ( $i ? self::f2w : null ) . $this->_codes_39[ord($v)];

				// check for valid code 39 code
				if($code) {
					// add to barcode text
					$barcode_string .= " {$v}";

					// init params
					$w = 0;
					$f2 = $fill = null;

					// add each bar coordinates and params
					for($j = 0; $j < strlen($code); $j++) {
						// format 2 code
						$f2 .= (string)$code[$j];

						// valid format 2 code
						if(strlen($f2) == 2) {
							// set bar fill
							$fill = $f2 == self::f2B || $f2 == self::f2b ? "_000" : "_fff";

							// set bar width
							$w = $f2 == self::f2B || $f2 == self::f2W ? $this->barcode_bar_thick : $this->barcode_bar_thin;

							// check for valid bar params
							if($w && $fill) {
								// add bar coordinates and params
								$bars[] = array($pos, $this->barcode_padding, $pos - 1 + $w,
									$this->barcode_height - $this->barcode_padding - 1, $fill);

								// move position pointer
								$pos += $w;
							}

							// reset params
							$f2 = $fill = null;
							$w = 0;
						}
					}
				}
				$i++;
			// invalid code, remove character from code
			} else {
				unset($this->_code[$k]);
			}
		}

		// check for valid bar coordinates and params
		if(!count($bars)) {
			// no valid bar coordinates and params
			return false;
		}

		// set barcode width
		$bc_w = $this->barcode_use_dynamic_width ? $pos + $this->barcode_padding : $this->barcode_width;

		// if not dynamic width check if barcode wider than barcode image width
		if(!$this->barcode_use_dynamic_width && $pos > $this->barcode_width) {
			return false;
		}

		// initialize image
		$img = imagecreate($bc_w, $this->barcode_height);
		$_000 = imagecolorallocate($img, 0, 0, 0);
		$_fff = imagecolorallocate($img, 255, 255, 255);
		$_bg = imagecolorallocate($img, $this->barcode_bg_rgb[0], $this->barcode_bg_rgb[1], $this->barcode_bg_rgb[2]);

		// fill background
		imagefilledrectangle($img, 0, 0, $bc_w, $this->barcode_height, $_bg);

		// add bars to barcode
		for($i = 0; $i < count($bars); $i++) {
			imagefilledrectangle($img, $bars[$i][0], $bars[$i][1], $bars[$i][2], $bars[$i][3], $$bars[$i][4]);
		}

		// check if using barcode text
		if($this->barcode_text) {
			// set barcode text box
			$barcode_text_h = 10 + $this->barcode_padding;
			imagefilledrectangle($img, $this->barcode_padding, $this->barcode_height - $this->barcode_padding - $barcode_text_h,
				$bc_w - $this->barcode_padding, $this->barcode_height - $this->barcode_padding, $_fff);

			// set barcode text font params
			$font_size = $this->barcode_text_size;
			$font_w = imagefontwidth($font_size);
			$font_h = imagefontheight($font_size);

			// set text position
			$txt_w = $font_w * strlen($barcode_string);
			$pos_center = ceil((($bc_w - $this->barcode_padding) - $txt_w) / 2);

			// set text color
			$txt_color = imagecolorallocate($img, 0, 255, 255);

			// draw barcod text
			imagestring($img, $font_size, $pos_center, $this->barcode_height - $barcode_text_h - 2,
				$barcode_string, $_000);
		}

		// check if writing image
		if($filename) {
			imagegif($img, $filename);
		// display image
		} else {
			header("Content-type: image/gif");
			imagegif($img);
		}
		
		imagedestroy($img);

		// valid barcode
		return true;
	}
}
?>

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 15:43:33 By : iRock
 


 

No. 4

Guest


ส่วนหน้านี้เป็นหน้าที่จะแสดงบาร์โค้ดครับ
-----------------------------------------------
ในหน้านี้ให้คุณดึงฐานข้อมูลของคุณโดยนำฟิลด์ที่เป็นรหัสที่คุณต้องการทำบาโค้ดมาเก็บไว้ใน ตัวแปร $codebar
Code (PHP)
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_MySQL_Con = "localhost"; // hostname
$database_MySQL_Con = "database"; //ชื่อดาต้าเบสของคุณ
$username_MySQL_Con = "root"; // user
$password_MySQL_Con = "1234"; // password
$MySQL_Con = mysql_pconnect($hostname_MySQL_Con, $username_MySQL_Con, $password_MySQL_Con) or trigger_error(mysql_error(),E_USER_ERROR); 
mysql_query("SET NAMES UTF8");
mysql_select_db($database_MySQL_Con, $MySQL_Con);
$query_Recordset1 = "SELECT * FROM indications WHERE ID = '".$_GET['barid']."'";
$Recordset1 = mysql_query($query_Recordset1, $MySQL_Con) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!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" />
<title>Untitled Document</title>
</head>

<body>
              <?
 include('Barcode39.php');

// set Barcode39 object 
$codebar = $row_Recordset1['Bar'];
$bc = new Barcode39("$codebar"); 

// display new barcode 
$bc->draw("bar.gif"); 
 
?>
</body>
</html>


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 15:49:49 By : iRock
 


 

No. 5

Guest


ลืมบอกไปอีกที่หนึ่ง
-----------------------------
Code (PHP)
$query_Recordset1 = "SELECT * FROM indications WHERE ID = '".$_GET['barid']."'";


ตรงนี้ให้เปลี่ยนเป็นฐานข้อมูลของคุณด้วยนะครับ
ลอง ๆ ไปปรับใช้ดูนะครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 15:54:27 By : iRock
 


 

No. 6

Guest


เพิ่มตรงนี้อีกนิดนึง
$codebar = $row_Recordset['Barcode'];

ต่อจากบรรทัดที่ 15 $totalRows_Recordset1 = mysql_num_rows($Recordset1);
ก็จะได้
Code (PHP)
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
$codebar = $row_Recordset['Barcode'];

แบบนี้ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 16:02:04 By : iRock
 


 

No. 7

Guest


ผมนี้ไม่รอบครอบเลย ลืมอีก หนึ่งอย่างที่สำคัญ
ใส่ <? if ($row_Recordset1['Barcode']!=""){echo "<img src='bar.gif' width='155' height='64'>"; }?>
ต่อจากบรรทัดที่ื 35
ก็จะได้
Code (PHP)
              <?
 include('Barcode39.php');

// set Barcode39 object 
$codebar = $row_Recordset1['Bar'];
$bc = new Barcode39("$codebar"); 

// display new barcode 
$bc->draw("bar.gif"); 
 
?>
<? if ($row_Recordset1['Barcode']!=""){echo "<img src='bar.gif' width='155' height='64'>"; }?>


และยังมีอีกที่นึง คำตอบที่ No. 6 อ่ะครับ บรรทัดที่สองให้แก้เป็น
Code (PHP)
$codebar = $row_Recordset1['Barcode'];

ด้วยครับ
เยอะหน่อยนะครับผมไม่ค่อยรอบครอบ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 16:11:15 By : iRock
 


 

No. 8



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



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


ตอบความคิดเห็นที่ : 7 เขียนโดย : iRock เมื่อวันที่ 2013-09-25 16:11:15
รายละเอียดของการตอบ ::
ไม่ปรากฏสิ่งใดเลยครับ
รบกวนตรวจเช็คให้ด้วย

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 16:17:59 By : kunnawut
 


 

No. 9



โพสกระทู้ ( 1,569 )
บทความ ( 2 )



สถานะออฟไลน์
Twitter Facebook Blogger

ลองดูของ tcpdf ในหมวด barcode ด้านล่างๆ ดูก็ได้ครับ ได้ครบทุกรูปแบบบนเว็บเลย ทั้ง 1D 2D :)


ประวัติการแก้ไข
2013-09-25 16:27:29
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 16:25:05 By : itpcc
 


 

No. 10

Guest


ลองใส่ตัวเลขดูครับแล้วลองรันครับ
$bc = new Barcode39("ลองใส่ตัวเลขลงตรงนี้");
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 16:35:49 By : iRock
 


 

No. 11



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



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


ตอบความคิดเห็นที่ : 10 เขียนโดย : iRock เมื่อวันที่ 2013-09-25 16:35:49
รายละเอียดของการตอบ ::
ดูให้ด้วยครับ
Code (PHP)
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_MySQL_Con = "localhost"; // hostname
$database_MySQL_Con = "swp"; //ชื่อดาต้าเบสของคุณ
$username_MySQL_Con = "root"; // user
$password_MySQL_Con = "1234"; // password
$MySQL_Con = mysql_pconnect($hostname_MySQL_Con, $username_MySQL_Con, $password_MySQL_Con) or trigger_error(mysql_error(),E_USER_ERROR); 
mysql_query("SET NAMES UTF8");
mysql_select_db($database_MySQL_Con, $MySQL_Con);
$query_Recordset1 = "SELECT * FROM ss WHERE ID = '".$_GET['barid']."'";
$Recordset1 = mysql_query($query_Recordset1, $MySQL_Con) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
$codebar = $row_Recordset1['username'];//ตรงนี้ไหมครับ  username คือ ตัวที่ต้องการทำบาร์โค้ด
?>
<!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" />
<title>Untitled Document</title>
</head>

<body>
              <?
 include('Barcode39.php');

// set Barcode39 object 
$codebar = $row_Recordset1['Bar'];
$bc = new Barcode39("$codebar"); 

// display new barcode 
$bc->draw("bar.gif"); 
 
?>
<? if ($row_Recordset1['Barcode']!=""){echo "<img src='bar.gif' width='155' height='64'>"; }?>
</body>
</html>


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 17:03:20 By : kunnawut
 


 

No. 12

Guest


ตอบความคิดเห็นที่ : 11 เขียนโดย : kunnawut เมื่อวันที่ 2013-09-25 17:03:20
รายละเอียดของการตอบ ::
ในขั้นตอนแรกให้เปลี่ยนบรรทัดที่ 12 เป็น

$query_Recordset1 = "SELECT * FROM ss";

ขั้นตอนต่อไปให้เปลี่ยน คำว่า Barcode ในบรรทัดที่ 37 เป็น username

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 17:14:55 By : iRock
 


 

No. 13

Guest


ตอบความคิดเห็นที่ : 11 เขียนโดย : kunnawut เมื่อวันที่ 2013-09-25 17:03:20
รายละเอียดของการตอบ ::
บรรทัด 30 ด้วยครับ ตรงคำว่า Bar เปลี่ยนเป็น username

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 17:16:32 By : iRock
 


 

No. 14



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



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


ตอบความคิดเห็นที่ : 13 เขียนโดย : iRock เมื่อวันที่ 2013-09-25 17:16:32
รายละเอียดของการตอบ ::
ถ้าอยาก เอา username ที่ Insert ตัวล่าสุด ต้องเปลี่ยนตรงไหนครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-09-25 17:35:00 By : kunnawut
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
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 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่