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

HOME > Community Zone > Forum > (PHP) line 230 ขึ้น syntax error, unexpected ครับ ลองหาเปลี่ยนเวอร์ชั่น appserv / phpmyadminแล้ว



 

(PHP) line 230 ขึ้น syntax error, unexpected ครับ ลองหาเปลี่ยนเวอร์ชั่น appserv / phpmyadminแล้ว

 



Topic : 133710



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



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



<?php
class mysql_config {

var $dbconfig = array(
'hostname' => NULL,
'username' => NULL,
'password' => NULL,
'database' => NULL,
'collation_connection' => NULL,
'character_set' => NULL );


function mysql_config(){
$GLOBALS['global_mysql_querydb_timer'] = 0;
$GLOBALS['global_mysql_querydb_counter'] = 0;
}

function get_querydb_timer(){
global $static_query_timer;
if(isset($static_query_timer))
return $static_query_timer;
else
return $GLOBALS['global_mysql_querydb_timer'];
}

function get_querydb_counter(){
global $static_querydb_count;
if(isset($static_querydb_count)) return $static_querydb_count;
else return $GLOBALS['global_mysql_querydb_counter'];
}

function set_querydb_timer($value){
global $static_query_timer;

if (isset($static_query_timer)) $static_query_timer = $value;
else $GLOBALS['go=global_mysql_querydb_timer'] = $value;
}

function set_querydb_counter($value){
global $static_query_count;

if (isset($static_query_count)) $static_query_count = $value;
else $GLOBALS['go=global_mysql_querydb_counter'] = $value;
}

function set_hostname($value){
$this->dbconfig['hostname'] = $value;
}

function set_username($value){
$this->dbconfig['username'] = $value;
}

function set_password($value){
$this->dbconfig['password'] = $value;
}

function set_database($value){
$this->dbconfig['database'] = $value;
}

function set_collation_connection($value){
$this->dbconfig['collation_connection'] = $value;
}

function set_character_set($value){
$this->dbconfig['character_set'] = $value;

}

function get_configdb(){

return $this->dbconfig;
}
}

class mysql_operator extends mysql_config {
var $link = NULL;
var $result = NULL;
var $mysql_version = NULL;
var $string_error = array();
function set_configdb(&$array_dbconfig){

$this->set_hostname($array_dbconfig['hostname']);
$this->set_username($array_dbconfig['username']);
$this->set_password($array_dbconfig['password']);
$this->set_database($array_dbconfig['database']);
$this->set_collation_connection($array_dbconfig['collation_connection']);
$this->set_character_set($array_dbconfig['character_set']);
}
function set_error_msg($string){
array_push($this->string_error, $string);

}
function get_error_smg(){
while (count($this->string_error) -1)
$string_output = '<b>MySQL Error : </b>'.
array_pop($this->string_error).'<br />';
return $string_output;
}
function mysql_operator(&$dbconfig) {
if(is_array($dbconfig))
$this->set_configdb($dbconfig);
else
$this->set_configdb($dbconfig->get_configdb());
}
function set_mysql_version($value){
$this->mysql_version = $value;
}
function get_mysql_version(){
return $this->mysql_version;
}
function opendb($newlink = FALSE) {
$this->link = mysql_connect($this->dbconfig['hostname'],$this->dbconfig['username'],$this->dbconfig['password'],$newlink);
if (!$this->link)
$this->set_error_msg(mysql_errno($this->link).':'.mysql_error($this->link));

if(!empty($this->dbconfig['character_set'])){
$this->querydb("SET CHARACTER SET".$this->dbconfig['character_set'].";");
$this->querydb_counter_decrement();

}
if (empty($this->dbconfig['collation_connection'])){
$this->querydb("SET collation_connection".$this->dbconfig['collation_connection'].";");
$this->querydb_counter_decrement();
}
}
function closedb(){
if (!mysql_close($this->link))
$this->set_error_msg(mysql_error($this->link).':'.mysql_error($this->link));
}
function querydb($string_query) {
$start_time = array_sum(explode(chr(32), microtime()));
$this->result = mysql_query ($string_query);
$end_time = array_sum(explode(chr(32), microtime()));

if (!$this->result)
$this->set_error_msg(mysql_error($this->link).':'.mysql_error($this->link));
$this->querydb_counter_increment();
}
function list_fields($table){
$fields = mysql_list_fields($this->dbconfig['database'], $table, $this->link);
$colums = mysql_num_fields($fields);
for ($i = 0; $i < $columns; $i++)
$array_fields_in_table[$i] = mysql_field_name($fields, $i);

return $array_fields_in_table;
}
function querydb_counter_increment(){
$this->set_querydb_counter($this->get_querydb_counter()+1);

}
function querydb_counter_decrement(){
$this->set_querydb_counter($this->get_querydb_counter()-1);

}
function querydb_transac_begin(){
if($this->get_mysql_version( ) >3)
$this->set_querydb("START TRANSACTION;");
}
function querydb_transac_rollback(){
if($this->get_mysql_version( ) >3)
$this->set_querydb("ROLLBACK;");

}
function querydb_transac_set_autocommit_zero(){
if($this->get_mysql_version( ) >3)
$this->set_querydb("SET AUTOCOMMIT=0;");
}
function querydb_transac_check_for_rollback_or_commit(){
if(!$this->get_resultdb())$this->querydb_transac_rollback();
else $this->querydb_transac_commit();
}
function num_rows_in_table($table, $condition = NULL){
$num_rows = new mysql_operator($this->get_configdb());
$num_rows->opendb();
$num_rows->querydb("SELECT COUNT(*) FROM $table $condition;");
$num_rows->closedb();
return mysql_result($num_rows->get_resultdb(), 0);
}
function has_data_in_table($table, $field, $value) {
$value = trim($value);

if(empty($field) or empty($value)) $sql_condtion = NULL;
else $sql_condtion = "WHERE ".$field."='".$value."'";

if($this->num_rows_in_table($table, $sql_condtion) > 0)return TRUE;
else return FALSE;
}
function reset_querydb() {
$this->set_resultdb(NULL);
}
function set_resultdb($resource) {
$this->result = $resource;
}
function get_resultdb() {
return $this->result;
}
function get_resultdb_fetch_data() {
return mysql_fetch_array($this->get_resultdb());///
}
function get_resultdb_num_rows() {
return mysql_num_rows($this->get_resultdb()); ////
}
function get_resultdb_num_fieds() {
return mysql_num_fieds($this->get_resultdb());
}
function get_last_insert_id() {
return mysql_insert_id();
}
function get_resultdb_atrow($row = 0){
return mysql_result($this->get_resultdb(), $row);
}
}
$obj_dbconfig = new mysql_config();
$obj_dbconfig->set_hostname("localhost");
$obj_dbconfig->set_username("root");
$obj_dbconfig->set_password("12345678");
$obj_dbconfig->set_database("oop3");
$obj_dbconfig->set_character_set("utf8");
$obj_dbconfig->set_collation_connection("utf8_general_ci");

$obj_db = new mysql_operator($obj_dbconfig->get_configdb());
$obj_db->opendb();
$obj_db->querydb("SELECT * FROM member");
$obj_db->closedb();
echo $obj_db->get_resultdb_num_rows();
// while ($row = $obj_db->get_resultdb_fetch_data()) {
//echo $row[0]. "<br />";
}

?>



Tag : MySQL, JAVA, Appserv, Windows







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2019-06-07 13:48:33 By : 740234103037388 View : 684 Reply : 1
 

 

No. 1



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



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


ใช้ parserตัวไหน เขียนโปรแกรม มันควรจะมีแจ้ง error ช่วงเขียนโปรแกรมแล้ว

พวก ; } ) ปิดไม่ครบ
โปรแกรมส่วนใหญ่มันมี hide/show group code อยู่ต้นบ้นทัด คลิกปิด มันไปที่ละอัน รายการย่อย
เดี๋ยวก็เจอ ตกหล่นตรงไหน






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2019-06-08 08:19:39 By : Chaidhanan
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : (PHP) line 230 ขึ้น syntax error, unexpected ครับ ลองหาเปลี่ยนเวอร์ชั่น appserv / phpmyadminแล้ว
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 01
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 อัตราราคา คลิกที่นี่