Nasıl php ile otomatik tam MySQL veritabanı için?

0 Cevap php

nasıl otomatik olarak php kodu ile MySQL veritabanı sorgusu doldururum?

veritabanı aşağıdaki gibi:

CREATE TABLE IF NOT EXISTS `scrore_table` (
  `scores_id` int(11) NOT NULL auto_increment,
  `scores_title` varchar(32) collate utf8_bin NOT NULL default '',
  `scores` varchar(15) collate utf8_bin NOT NULL default '',
  `decimal_place` char(1) collate utf8_bin NOT NULL,
  `value` float(15,8) NOT NULL,
  PRIMARY KEY  (`currency_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1; ;

INSERT INTO `scrore_table` (`scrore_id`, `scrore_title`, `scores`, `decimal_place`, `value`) VALUES
(1, '', 'GameA0', '',),
(2, '', 'GameA1', '',),
(3, '', 'GameA2', '',),
..............................etc
(15, '', 'GameA15', '',);

puanları, yani: Benchmark (anahtar sözcük) hale gelir

IF found 

scores = GameA0 

then insert 

scores_title = Game For Player A0
decimal_place = 2
value = 1.58030000


IF found 

scores = GameA1 

then insert 

scores_title = Game For Player A1
decimal_place = 2
value = 158.030000


IF found 

scores = GameA15 

then insert 

scores_title = Game For Player A15
decimal_place = 2
value = 0.31303000

vs ..

Herhangi bir öneri ve işaretçi ben takdir bana yardım etmek ve çok teşekkürler

0 Cevap