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

HOME > PHP > PHP Forum > สอบถามผู้รู้เกี่ยวกับ Fatal error: require() [function.require]:..........



 

สอบถามผู้รู้เกี่ยวกับ Fatal error: require() [function.require]:..........

 



Topic : 110663



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



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




CodeError
Fatal error: require() [function.require]: Failed opening required '__DIR__\\_class\\class.php' (include_path='.;C:\php5\pear') in C:\AppServ\www\index.php on line 8


แก้ยังไงครับ ตรงที่ include_path='.;C:\php5\pear จะเปลี่ยนที่อยู่มันได้ที่ไหนครับผมจะเปลี่ยน include_path='.;C:\AppServ\php5\pear
หรือมีวิธีแก้อย่างอื่นหรือไมครับขอความชวยเหลือหน่อยครับ



Tag : PHP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2014-08-17 02:14:23 By : freedom454 View : 1102 Reply : 16
 

 

No. 1



โพสกระทู้ ( 5,146 )
บทความ ( 26 )

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

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


ไม่ใช่แระ คุณเข้าใจผิดแระ ที่มันฟ้อง error แบบนี้
คุณ require ไฟล์มาไม่สมบูรณ์ มันหา class.php ใน path อ้างอิงไม่ได้ ครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 05:56:13 By : deawx
 


 

No. 2



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



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


'.;C:\AppServ\php5\pear
รูปแบบของ path ไม่ถูกนะครับ เขียนให้ถูกด้วยครับ

ไม่ควรมี .; (จุด เซมิโคล่อน) อยู่ด้านหน้า C: นะครับ



ปล. เพื่อความชัดเจน เอาโค๊ดตรง include มาดูครับ


ประวัติการแก้ไข
2014-08-17 08:38:10
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 08:37:30 By : Chaidhanan
 

 

No. 3



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



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


Coderequire
require _root . '_class' . _sep . 'class.php';


กดกห


ประวัติการแก้ไข
2014-08-17 12:52:11
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 12:50:12 By : freedom454
 


 

No. 4



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



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


index
<?php ini_set('display_errors', true); error_reporting(E_ALL); date_default_timezone_set(@date_default_timezone_get()); define('_sep', str_replace('\\', '\\\\', DIRECTORY_SEPARATOR)); define('_root', str_replace('\\', '\\\\', __DIR__) . _sep); require _root . '_class' . _sep . 'class.php'; ?> <!DOCTYPE html> <html> <head> <title> Pulse </title> <link rel="stylesheet" type="text/css" href="/cache/cache.php?f=style.css" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <div id="header"> <div class="wrap0"> <a href="/"> Home </a> <a href="/powers"> Powers </a> <a href="/create"> Create Group </a> <a href="/edit"> Edit Chat </a> <a href="/search"> Search </a> <?php if($core->auth) { $avatar = is_numeric($core->user['avatar']) ? sprintf('/av/%s.png', $core->user['avatar']) : htmlspecialchars($core->user['avatar']); print '<a href="/profile?u=' . $core->user['username'] . '" class="profile myprofile" style="background-image: url(\'' . $avatar . '\');">' . $core->user['username'] . '</a>'; } else { print '<a href="/profile" class="profile"> Login // Register </a>'; } ?> </div> </div> <div class="wrap1 f0px"> <!-- Spacing --> <div class="block c1"></div> <!-- End Spacing --> <?php $core->doPage(); ?> </div> <?php if(isset($core->user['username'])) { $pcount = $mysql->fetch_array('select count(*) as `count` from `userpowers` where `userid`=' . $core->user['id'] . ';'); $username = strlen($core->user['username']) > 15 ? substr($core->user['username'], 0, 15) . '...' : $core->user['username']; print '<div class="hoverprofile">'; print '<table width="99%" align="center">'; print '<tr> <td colspan="2" class="tc"> ' . $username . ' </td> </tr>'; print '<tr> <td> xats </td> <td class="fr hoverxats"></td> </tr>'; print '<tr> <td> days </td> <td class="fr hoverdays"></td> </tr>'; print '<tr> <td> powers </td> <td class="fr"> ' . $pcount[0]['count'] . ' </td> </tr>'; /*Ranks*/ $admins = array('Pulse'); $vols = array(); $debugStaff = array(); $IPbanned = array(); $torched = array(); /*End*/ if(in_array($username, $admins)) { print '<img src="/images/images/pawns/admin.png" title="Pulse Administrator"> Administrator'; print '<hr width="100%">'; } else if(in_array($username, $vols)) { print '<img src="/images/images/pawns/spec.png" title="Pulse Volunteer"> Volunteer'; print '<hr width="100%">'; } else if(in_array($username, $debugStaff)) { print '<img src="/images/images/pawns/promoted.png" title="Pulse Debug Volunteer"> Debug Volunteer'; print '<hr width="100%">'; } else { print '<img src="/images/images/pawns/online.png" title="Pulse User"> Normal User'; print '<hr width="100%">'; } print '</table>'; print '</div>'; } ?> <script type="text/javascript"> var ranks = new Array(); <?php $constants = get_defined_constants(true); foreach($constants['user'] as $i => $u) { if(substr($i, 0, strpos($i, '_')) == 'RANK') { print 'ranks["' . strtolower(substr($i, strpos($i, '_') + 1)) . '"] = ' . $u . ';'; } } ?> </script> <script src="/cache/cache.php?f=query.js"></script> <script src="/cache/cache.php?f=script.js"></script> </body> </html>

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 13:10:28 By : freedom454
 


 

No. 5



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



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


Class
<?php define('RANK_GUEST', 0); define('RANK_MEMBER', 1); define('RANK_ADMIN', 2); class core { private $page = 'home'; public $user = array(); public $auth = false; public function __construct() { global $core, $mysql, $config; if(!class_exists('Database')) { require _root . '_class' . _sep . 'pdo.php'; if(file_exists(_root . '_class' . _sep . 'config.php') && !Isset($_GET['anal'])) { include _root . '_class' . _sep . 'config.php'; $mysql = new Database($config->db[0], $config->db[1], $config->db[2], $config->db[3]); if(!$mysql->connected) { $config = $mysql = false; } else { $server = $mysql->fetch_array('select * from `server` limit 0, 2;'); if(count($server) > 0) { $config->bind_ip = $server[0]['server_ip']; $config->server_ip = $server[0]['connect_ip']; $config->server_pt = $server[0]['server_pt']; $config->server_dm = $server[0]['server_domain']; $config->xats = $server[0]['starting_xats']; $config->days = $server[0]['starting_days']; $config->info = $server[0]; $admin = $mysql->fetch_array('select count(*) from `users` where `username`!=\'Unregistered\';'); if($admin[0]['count(*)'] > 0) { $config->complete = true; try { if(isset($_COOKIE['loginKey']) && strlen($_COOKIE['loginKey']) == 32) { $user = $mysql->fetch_array('select * from `users` where `loginKey`=:key;', array('key' => $_COOKIE['loginKey'])); if(empty($user)) { throw new Exception; } if(!isset($_COOKIE['xats']) || $_COOKIE['xats'] != $user[0]['xats']) { setCookie('xats', $user[0]['xats']); } if(!isset($_COOKIE['days']) || $_COOKIE['days'] != floor($user[0]['days'] / 86400)) { setCookie('days', floor($user[0]['days'] / 86400)); } if(!isset($_COOKIE['rank']) || $_COOKIE['rank'] != $user[0]['rank']) { setCookie('rank', $user[0]['rank']); } $this->user = $user[0]; $this->auth = true; } } catch(Exception $e) { /* Do Nothing */ } } } } } } } public function checkRanks() { $admins = array('saint', 'Insecure'); $vols = array('ixat'); if(in_array($user, $admins)) { print "Administrator"; } else if(in_array($user, $vols)) { print "Volunteer"; } else { print "Normal User"; } } public function doPage() { global $mysql, $config, $core; $pages = array(); foreach(glob(_root . '_pages' . _sep . '*.php') as $i => $u) { $pages[substr(basename($u), 0, -4)] = $u; } if(isset($_GET['page']) && array_key_exists($_GET['page'], $pages)) { $this->page = $_GET['page']; } elseif(isset($_GET['page'])) { if(is_string($_GET['page'])) { $chat = $mysql->fetch_array('select * from `chats` where `name`=:chat;', array('chat' => $_GET['page'])); if(!empty($chat)) { $this->page = 'chat'; } } } require $pages[$this->page]; } public function allset() { /* So I can cheat */ $args = func_get_args(); $array = array_shift($args); foreach($args as $index) { if(!isset($array[$index]) || !is_string($array[$index])) { return false; } } return true; } public function getEmbed($chat, $pass = false, $w = 730, $h = 490) { global $mysql, $config; $chat = $mysql->fetch_array('select * from `chats` where `name`=:a or `id`=:b;', array('a' => $chat, 'b' => $chat)); if($pass !== false) { $pass = '&pass=' . urlencode($pass); } $debug = isset($_GET['debug']) ? 'chat2.swf' : 'chat.swf'; return empty($chat) ? false : "<embed id=\"XenoBox\" width=\"{$w}\" height=\"{$h}\" type=\"application/x-shockwave-flash\" quality=\"high\" src=\"http://{$config->info['server_domain']}/cache/cache.php?f={$debug}&d=flash&id={$chat[0]["id"]}&gn={$chat[0]["name"]}{$pass}\" flashvars=\"id={$chat[0]["id"]}&gn={$chat[0]["name"]}{$pass}\" wmode=\"transparent\">"; } public function refreshLogin($redirect = true) { global $mysql, $config; if(!isset($_COOKIE['loginKey']) || strlen($_COOKIE['loginKey']) != 32) { return false; } $user = $mysql->fetch_array('select * from `users` where `loginKey`=:key;', array('key' => $_COOKIE['loginKey'])); if(empty($user)) { return false; } $upowers = $mysql->fetch_array("select * from `userpowers` where `userid`={$user[0]['id']};"); $spowers = $mysql->fetch_array("select * from `powers` where `name` not like '%(Undefined)%';"); list($vals, $p, $dO, $powerO, $pp) = array(array(), array(), '', '', ''); foreach($spowers as $i => $u) { $vals[$u["id"]] = array($u["section"], $u["subid"]); if(!isset($p[$u["section"]])) { $p[$u["section"]] = 0; } } foreach($upowers as $i => $u) { if($u["count"] >= 1 && isset($vals[$u["powerid"]]) && isset($p[$vals[$u["powerid"]][0]])) { $str = $u['powerid'] . '=' . ($u['count'] > 1 ? ($u['count'] -1) : 1) . '|'; $dO .= $str; if($u['count'] > 1) { $powerO .= $str; } $p[$vals[$u["powerid"]][0]] += $vals[$u["powerid"]][1]; } } foreach($p as $i => $u) { $pp .= "w_d" . (substr($i, 1) + 4) . "={$u}&"; } /* Nickname / Status */ $nickname = explode('##', $user[0]['nickname'], 2); if(count($nickname) != 2) { $nickname[1] = ""; } $user[0] = array_map('urlencode', $user[0]); $vars = ""; $vars .= "w_userno={$user[0]["id"]}&"; $vars .= "w_avatar={$user[0]["avatar"]}&"; $vars .= "w_k1={$user[0]["k"]}&"; $vars .= "w_d0={$user[0]['d0']}&"; $vars .= "w_d1={$user[0]['days']}&"; $vars .= "w_d2={$user[0]['d2']}&"; $vars .= "w_d3=&"; $vars .= $pp; $vars .= "w_dt=0&"; $vars .= "w_homepage={$user[0]['url']}&"; $vars .= "w_Powers=" . implode(",", $p) . "&"; $vars .= "w_PowerO=" . urlencode($powerO) . "&"; $vars .= "w_status=" . urlencode($nickname[1]) . "&"; $vars .= "w_dO=" . urlencode($dO) . "&"; $vars .= "w_dx={$user[0]["xats"]}&"; $vars .= "w_registered={$user[0]["username"]}&"; $vars .= "w_k2={$user[0]["k2"]}&"; $vars .= "w_k3={$user[0]["k3"]}&"; $vars .= "w_name=" . urlencode($nickname[0]); /* Finish Login */ return "<embed height=\"1\" width=\"1\" type=\"application/x-shockwave-flash\" flashvars=\"{$vars}" . ($redirect ? '&redirect=1' : '') . "\" src=\"http://{$config->info['server_domain']}/cache/cache.php?f=login.swf&d=flash\">"; } } $core = new core(); if(isset($_GET['ajax']) || isset($_GET['page']) && $_GET['page'] == 'config') { header('Content-Type: text/plain'); $core->doPage(); exit; }

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 13:11:07 By : freedom454
 


 

No. 6



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



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


Code (PHP)
$pth =  _root . '_class' . _sep . 'class.php';
if(!file_exists($pth)) { 
	echo 'notfound ' , $pth , "<br/>\n" 
		, '_sep = ', _sep, " -- " , DIRECTORY_SEPARATOR, "<br/>\n" 
		, '_root = ', _root ,' -- ', __DIR__;
	exit; 
}
require $pth;


ลองแก้เป็นแบบนี้ แล้วเอาผลมาดูหน่อยครับ


ประวัติการแก้ไข
2014-08-17 13:22:20
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 13:17:56 By : Chaidhanan
 


 

No. 7



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



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


เอา php code ครอบ ดีกว่า เอา อื่นๆ ครอบครับ มันแยกสีให้ด้วย
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 13:21:54 By : Chaidhanan
 


 

No. 8



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



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


ถามครับ ตัว class ใช้ ctrl+A หรือเปล่าครับ หรือใช้เม้าส์ลากมาแปะ (สำคัญมาก)

เพราะ ?> มันหายไปจาก ด้านล่างไม่เห็นมีครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 13:28:38 By : Chaidhanan
 


 

No. 9



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



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


ตอบความคิดเห็นที่ : 8 เขียนโดย : Chaidhanan เมื่อวันที่ 2014-08-17 13:28:38
รายละเอียดของการตอบ ::
ตัวคลาส ไม่มี ?> ครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 13:58:05 By : freedom454
 


 

No. 10



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



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


ตอบความคิดเห็นที่ : 6 เขียนโดย : Chaidhanan เมื่อวันที่ 2014-08-17 13:17:56
รายละเอียดของการตอบ ::
Codeerror
Notice: Use of undefined constant _root - assumed '_root' in C:\AppServ\www\index.php on line 6 Notice: Use of undefined constant _sep - assumed '_sep' in C:\AppServ\www\index.php on line 6 notfound _root_class_sepclass.php _sep = Notice: Use of undefined constant _sep - assumed '_sep' in C:\AppServ\www\index.php on line 9 _sep -- \ _root = Notice: Use of undefined constant _root - assumed '_root' in C:\AppServ\www\index.php on line 10 _root -- Notice: Use of undefined constant __DIR__ - assumed '__DIR__' in C:\AppServ\www\index.php on line 10 __DIR__


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 13:59:22 By : freedom454
 


 

No. 11



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



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


ตอบความคิดเห็นที่ : 9 เขียนโดย : freedom454 เมื่อวันที่ 2014-08-17 13:58:05
รายละเอียดของการตอบ ::
ต้องใส่ ปิด tag php ด้วยครับ มันผิดหลักไวยกรณ์ ไฟล์นี้จะเสียไม่สามารถใช้งานได้ครับ



ตอบความคิดเห็นที่ : 10 เขียนโดย : freedom454 เมื่อวันที่ 2014-08-17 13:59:22
รายละเอียดของการตอบ ::

define('_sep', str_replace('\\', '\\\\', DIRECTORY_SEPARATOR));
define('_root', str_replace('\\', '\\\\', __DIR__) . _sep);

สองบันทัดสีแดงนี่ str_replace ไว่ทำอะไรครับลองเอาออกครับ
index.php ต้องเป็นแบบนี้นะครับ ไม่ใช่ รัน เฉพาะ โค๊ดของผมเพียวๆ นะครับ
Code (PHP)
<?php
ini_set('display_errors', true);
error_reporting(E_ALL);
date_default_timezone_set(@date_default_timezone_get());

define('_sep', DIRECTORY_SEPARATOR );
define('_root', __DIR__  . _sep);
$pth =  _root . '_class' . _sep . 'class.php';
if(!file_exists($pth)) { 
	echo 'notfound ' , $pth , "<br/>\n" 
		, '_sep = ', _sep, " -- " , DIRECTORY_SEPARATOR, "<br/>\n" 
		, '_root = ', _root ,' -- ', __DIR__;
	exit; 
}
require $pth;
?><doctype .........




ประวัติการแก้ไข
2014-08-17 14:15:00
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 14:12:53 By : Chaidhanan
 


 

No. 12



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



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


ตอบความคิดเห็นที่ : 11 เขียนโดย : Chaidhanan เมื่อวันที่ 2014-08-17 14:12:53
รายละเอียดของการตอบ ::
CodeError
Notice: Use of undefined constant __DIR__ - assumed '__DIR__' in C:\AppServ\www\index.php on line 7 notfound __DIR__\_class\class.php _sep = \ -- \ _root = __DIR__\ -- Notice: Use of undefined constant __DIR__ - assumed '__DIR__' in C:\AppServ\www\index.php on line 12 __DIR__


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 14:23:12 By : freedom454
 


 

No. 13



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



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


รบกวนถามหน่อยครับ ใช้ PHP version ไหนอยู่ครับ __DIR__ ใช้ได้ ที่ 5.3 ขึ้นไปนะครับ

http://php.net/manual/en/language.constants.predefined.php


ประวัติการแก้ไข
2014-08-17 14:58:40
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 14:57:37 By : Chaidhanan
 


 

No. 14



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



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


ตอบความคิดเห็นที่ : 13 เขียนโดย : Chaidhanan เมื่อวันที่ 2014-08-17 14:57:37
รายละเอียดของการตอบ ::
ที่ผมใช้ตอนนี้ PHP Version 5.2.6 ต้องอัพเกรดหรอครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 15:00:20 By : freedom454
 


 

No. 15



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



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


ตอบความคิดเห็นที่ : 14 เขียนโดย : freedom454 เมื่อวันที่ 2014-08-17 15:00:20
รายละเอียดของการตอบ ::
ครับผม __DIR__ 5.2.6 ยังไม่มีใช้ครับ อัพเกรดได้ ก็อัพเกรดลยครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 15:15:13 By : Chaidhanan
 


 

No. 16



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



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


ตอบความคิดเห็นที่ : 15 เขียนโดย : Chaidhanan เมื่อวันที่ 2014-08-17 15:15:13
รายละเอียดของการตอบ ::
ครับผม ยังไงต้องขอบคุณมากน่ะครับที่เสียสละเวลามาตอบให้ผม :)

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-08-17 15:50:34 By : freedom454
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : สอบถามผู้รู้เกี่ยวกับ Fatal error: require() [function.require]:..........
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 อัตราราคา คลิกที่นี่