|
|
|
ช่วยแนะนำหน่อยครับ เกี่ยวกับ การทำแท็บ EXP,XP กับ database(ตามภาพประกอบ) |
|
|
|
|
|
|
|
หาพวก jQuery UI มาจัดการก็ได้แล้วครับ
|
|
|
|
|
Date :
2017-04-26 11:55:26 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ตอนนี้ทำได้แล้ว
เผื่อใครสนใจอยากลองเอาไปทำ
Code (PHP)
<!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>XP Bar - Tahh.pst</title>
<style type="text/css">
body {
font-family:Verdana, Geneva, sans-serif;
font-size:15px;
background-color: #fafafa;
}
.XP-bar {color:#000;background-color:#f1f1f1;border-radius:16px;border:1px solid #ddd}
.XP {color:#fff;background-color:#f44336;border-radius:16px;}
</style>
</head>
<body>
<?php
$userXP = "35129"; // XP ของคุณ
$XPup = "100000"; // XP ทั้งหมด
$XPforUP = $XPup-$userXP;
$percent = $userXP/$XPup*100; // หาเปอร์เซ็น ของค่า XP ของคุณ จะได้ 35.129
$showPct = explode (".",$percent); // แบ่งค่า $percent ออก ระหว่าง "." จะได้ $showPct[0] = 35 และ $showPct[1] = 129
?>
<br>
<table width="500" border="0" align="center">
<tr>
<td colspan="3"><h3><strong>USER 01</strong></h3></td>
<td> </td>
</tr>
<tr>
<td><font size="-1">XP ของคุณ : <strong><?php echo number_format($userXP); ?></strong></font></td>
<td><font size="-1">XP ที่ต้องการ : <strong><?php echo number_format($XPforUP); ?></strong></font></td>
<td><font size="-1">XP ทั้งหมด : <strong><?php echo number_format($XPup); ?></strong></font></td>
<td> </td>
</tr>
<tr>
<td height="10" colspan="3"><div class="XP-bar">
<div class="XP" style=" height:20px;width:<?php echo $showPct[0]."%"; ?>"></div>
</div></td>
<td valign="middle"><font size="-1"><strong><?php echo $showPct[0]."%"; ?></strong></font></td>
</tr>
</table>
</body>
</html>
|
|
|
|
|
Date :
2017-04-26 12:51:13 |
By :
Tahh.pst |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|