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 > ดูรูป 2รูป นี้ให้หน่อยค่ะ อยากรู้ว่ามันเป็นเพราะอะไรค่ะ ใครรู้ช่วยตอบหน่อยค่ะ



 

ดูรูป 2รูป นี้ให้หน่อยค่ะ อยากรู้ว่ามันเป็นเพราะอะไรค่ะ ใครรู้ช่วยตอบหน่อยค่ะ

 



Topic : 074406

Guest




ทำไม พอเวลาล็อกอินแล้ว ทำไม่ หัว มันเลื่อนลง เป็นแบบในรูป

200




แต่ถ้าไม่ล็อกอิน มันก้อเป็นปกตินะค่ะ แบบในรูป


100



Tag : PHP, MySQL, CakePHP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2012-02-23 17:02:46 By : น้องอาโป View : 1248 Reply : 8
 

 

No. 1



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

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

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

View Source ดูในหน้า Web Browser ครับว่ามี <br> หรือเปล่า






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-02-23 17:13:35 By : webmaster
 


 

No. 2

Guest


ตอบความคิดเห็นที่ : 1 เขียนโดย : webmaster เมื่อวันที่ 2012-02-23 17:13:35
รายละเอียดของการตอบ ::
มี หรือ ไม่มี มัน แตกต่าง กันอย่างไรค่ะ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-02-23 20:09:10 By : น้องอาโป
 

 

No. 3

Guest


แต่ดูแล้วมันไม่มีนะค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-02-23 20:38:34 By : น้องอาโป
 


 

No. 4



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



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

เชคไฟล์ที่ include เข้ามาตอน login ดีๆ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-02-23 21:26:13 By : ekeak
 


 

No. 5

Guest


บรรทัดที่427 ถึง 478 เกี่ยวกับการ login ช่วยดูให้หน่อยนะค่ะ

Code (PHP)
<?
	session_start();
	$showUsername = $_SESSION['user'];
	$host = "localhost";
	$user = "root"; 
	$passwd = "1234"; 
	$dbname = "login";
	$tbname = "member";
	
mysql_connect($host,$user,$passwd) or die("ติดต่อ Host ไม่ได้");
mysql_select_db($dbname) or die("ติดต่อฐานข้อมูลไม่ได้");
mysql_query("SET NAMES UTF8");
	$strSQL = "SELECT * FROM member WHERE id_member = '".$_SESSION['id_member']."' ";
	$objQuery = mysql_query($strSQL);
	$objResult = mysql_fetch_array($objQuery);
	
?>
<!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"><!-- InstanceBegin template="/Templates/template.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>โรงพยาบาลส่งเสริมสุขภาพตำบลหนองงูเหลือม</title>
<!-- InstanceEndEditable -->
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
 	<script>
 	//<![CDATA[
 	$(function(){
 	$('.imgx').hover(function(){
	var w = 250;
 	var h = 250;
 	var d = 600;//duration
 	var imgx = $(this);
 	$('.imgy').remove();
 	var imgy = $('<img class="imgy" src="'+$(this).attr('src')+'"/>').appendTo('body');
 	imgy.css({
 	position: 'absolute',
 	left: imgx.offset().left,
 	top: imgx.offset().top,
 	width: imgx.width(),
 	height: imgx.height()
 	}).mouseout(function(){
 	$('.imgy').remove();
 	}).click(function(){
 	$('.imgy').remove();
 	});
 	imgy.animate({
 	left: imgx.offset().left - (w/2),
 	top: imgx.offset().top - (h/2),
 	width: w+'px',
 	height: h+'px'
 	},d);
 	},function(){});
 	});
 	//]]>
 	</script>
<script language="javascript">
function fncSubmit()
{
	if(document.login.logname.value == "")
	{
		alert('กรุณากรอก ชื่อผู้ใช้');
		document.login.logname.focus();
		return false;
	}		
       
	if(document.login.psswd.value == "")
	{
		alert('กรุณากรอก รหัสผ่าน');
		document.login.psswd.focus();		
		return false;
	}	
       
        if(document.login.name.value == "")
	{
		alert('กรุณากรอก ชื่อสมาชิก');
		document.login.name.focus();		
		return false;
	}
	
	if(document.login.address.value == "")
	{
		alert('กรุณากรอก ที่อยู่');
		document.login.address.focus();		
		return false;
	}
	if(document.login.gender.value == "")
	{
		alert('กรุณาเลือก เพศ');
		document.login.gender.focus();		
		return false;
	}

        if(document.login.email.value == "")
	{
		alert('กรุณากรอก อีเมล์');
		document.login.email.focus();		
		return false;
	}

	document.login.submit();
}
</script>
<style type="text/css">
#menu1 {
	float: center;
	width: 550px;
}

#menu1 ul {
	margin: 0px;
	padding: 0px 0px 0px 15px;
	list-style: none;
}

#menu1 li {
	float: left;
}

#menu1 a {
	display: block;
	float: left;
	height: 25px;
	padding: 13px 30px 0px 30px;
	text-decoration: none;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #0C0C0C;
}

#menu1 a:hover, #menu1 .current_page_item a {
	background: #00F;
	text-decoration: none;
	color: #FFF;
}

#menu1 .current_page_item a {
	color: #FFFFFF;
}

.body {

	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #2E5783;
	border-color: #003;
}
body{font-size:13px;
font-family:font-family: Verdana, Geneva, sans-serif;
}
#menu {
	float: center;
	padding-top: 1px;
	height: 10px;
}

#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu ul li {
	padding: 0;
	margin: 0;
	display: inline;
}

#menu ul li a {
	float: left;
	display: block;
	height: 30px;
	width: 135px;
	margin: 0;
	padding: 8px 0 0 0;
	text-align: center;
	font-size: 12px;
	text-decoration: none;
	color: #FFF;
	font-weight: bold;
	outline: none;
}

#menu li a:hover, #menu li .current {
	color: #333333;
	background: url(pic/menu_hover.png) no-repeat top;
}

.data333 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #003366;
}
.data333 a{
	color:#03C;
	
}
.data33 a{
	color:#FFF;
	}

.data33 a:hover{
	color:#FFF;
	}
	
#data1 {
	font-size: 24px;
}
.data2 {
	color: #FFF;
	font-size: 18px;
	font-family: Verdana, Geneva, sans-serif;
	background-color: #00F;
}
.Search{ font-size:18px;
font-weight:bold;}
.data3 {
	font-size: 22px;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	background-color: #00F;
	font-weight: bold;
}
.data4{font-size:16px;
font-weight:bold;}
.headvm{font-size:16px;}
.hnew{font-size:14px;
font-weight:bold;}

.tdata{font-size:15px;}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #F00;
}
a:active {
	text-decoration: none;
}.excel29 {
	padding-top:1px;
	padding-right:1px;
	padding-left:1px;
	color:black;
	font-size:11.0pt;
	font-weight:400;
	font-style:normal;
	text-decoration:none;
	font-family:Tahoma, sans-serif;
	text-align:center;
	vertical-align:bottom;
	border:none;
	white-space:nowrap;
}
.excel30 {padding-top:1px;
padding-right:1px;
padding-left:1px;
color:black;
font-size:14.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:"Cordia New", sans-serif;
text-align:center;
vertical-align:top;
border:none;
white-space:normal;
border-top:none;
border-right:1.0pt solid black;
border-bottom:1.0pt solid black;
border-left:none;
background:#B47EB0;
}
.excel31 {padding-top:1px;
padding-right:1px;
padding-left:1px;
color:black;
font-size:14.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:"Cordia New", sans-serif;
text-align:left;
vertical-align:top;
border:none;
white-space:normal;
border-top:none;
border-right:1.0pt solid black;
border-bottom:1.0pt solid black;
border-left:none;
background:#00B0F0;
}
.excel32 {padding-top:1px;
padding-right:1px;
padding-left:1px;
color:black;
font-size:14.0pt;
font-weight:700;
font-style:normal;
text-decoration:none;
font-family:"Cordia New", sans-serif;
text-align:center;
vertical-align:top;
border:none;
white-space:normal;
border-top:1.0pt solid black;
border-right:1.0pt solid black;
border-bottom:none;
border-left:1.0pt solid black;
background:#CCFFCC;
}
.excel33 {padding-top:1px;
padding-right:1px;
padding-left:1px;
color:black;
font-size:14.0pt;
font-weight:700;
font-style:normal;
text-decoration:none;
font-family:"Cordia New", sans-serif;
text-align:center;
vertical-align:top;
border:none;
white-space:normal;
border-top:none;
border-right:1.0pt solid black;
border-bottom:1.0pt solid black;
border-left:1.0pt solid black;
background:#CCFFCC;
}
.excel34 {padding-top:1px;
padding-right:1px;
padding-left:1px;
color:black;
font-size:14.0pt;
font-weight:700;
font-style:normal;
text-decoration:none;
font-family:"Cordia New", sans-serif;
text-align:left;
vertical-align:top;
border:none;
white-space:normal;
border-top:1.0pt solid black;
border-right:1.0pt solid black;
border-bottom:none;
border-left:1.0pt solid black;
background:#CCFFCC;
}
.font5 {color:black;
font-size:16.0pt;
font-weight:700;
font-style:normal;
text-decoration:none;
font-family:"Cordia New", sans-serif;
}
.font6 {color:black;
font-size:16.0pt;
font-weight:700;
font-style:normal;
text-decoration:none;
font-family:Calibri, sans-serif;
}
.corupc {font-size: 14px;
	color: #000;
	font-family: "Arial Unicode MS";
	text-align: left;
}

</style>
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
</head>

<body background="pic/bgbgweb.gif">
<table width="980" border="0" align="center" cellspacing="0">
  <tr>
    <td height="1413"><table width="980" border="0">
      <tr>
        <td><img src="pic/healh.jpg" width="980" height="200" /></td>
      </tr>
    </table>
      <!-- InstanceBeginEditable name="EditRegion4" -->  <table width="980" border="0" align="center" cellspacing="0" bgcolor="#3D74AD">
        <tr>
          <td height="50" align="left" bgcolor="#023287"><div id="menu">
            <ul>
              <li><a class="current" href="project.php">หน้าแรก</a></li>
              
              <li><a href="ShowActivity.php">กิจกรรม</a></li>
              <li><a href="ShowNews.php">ข่าว รพ.สต</a></li>
               <li><a href="ShowPeple">บุคลากร</a></li>
               
               <?
if($_SESSION['user'] ==""){ // เช็คว่าใช่สมาชิกหรือไม่ หรือ สมาชิกได้เข้าสู่ระบบหรือยัง ถ้าตัวแปร user=ค่าว่าง ก็แจ้งให้เขาทราบ
?> <table width="255" border="0" align="right">
        <tr>
          <td width="249" height="39" align="center"><form id="cse" name="cse" method="get" action="http://www.google.com/cse">
            <table width="32" height="32" border="0" align="left" background="pic/google.png">
              <tr>
                <td width="26">&nbsp;</td>
              </tr>
            </table>
            <input type="text" name="q" id="textfield" />
            <input type="submit" name="sa" id="sa" value="ค้นหา" />
          </form></td>
        </tr>
      </table> <? }
else{ ?>

<li><a href="ShowWord">เอกสาร</a></li>
              <li><a href="Webboard2">ติดต่อสอบถาม</a></li>
              <li><a href="ShowPatient">ประวัติผู้ป่วย</a></li>
            </ul>
          </div>
<? } ?>
              </td>
        </tr>
      </table><!-- InstanceEndEditable -->
      <table width="980" border="0" align="center" bgcolor="#FFFFFF">
        <tr>
          <td width="197" height="487" valign="top"><?
if($_SESSION['user'] ==""){ // เช็คว่าใช่สมาชิกหรือไม่ หรือ สมาชิกได้เข้าสู่ระบบหรือยัง ถ้าตัวแปร user=ค่าว่าง ก็แจ้งให้เขาทราบ
?> <table width="190" border="0" cellpadding="0" cellspacing="0">
            <tr>
              <td width="184"><img src="pic/t_login.gif" alt="" width="187" height="63" /></td>
            </tr>
            <tr>
              <td><table width="177" height="188" border="0" align="center" cellspacing="0" background="pic/bgbg_login.gif">
                <tr>
                  <td width="175" height="188" align="center" valign="top"><form id="form1" name="form1" method="post" action="checkdata">
                    <table width="168" border="0" align="left" cellspacing="0">
                      <tr>
                        <td height="52" colspan="2"><p>&nbsp;</p></td>
                        <td width="158"><p><span class="body">username:</span>
                          <input type="text" name="logname" id="logname" />
                        </p></td>
                      </tr>
                      <tr>
                        <td colspan="2"><span class="body">
                          <label for="password"></label>
                        </span></td>
                        <td><span class="body"> password:</span>
                          <input type="password" name="psswd" id="psswd" /></td>
                      </tr>
                      <tr>
                        <td height="23" colspan="2">&nbsp;</td>
                        <td height="23"><input type="checkbox" name="checkbox" id="checkbox" />
                          <span class="body"> login ตลอดไป</span></td>
                      </tr>
                      <tr>
                        <td colspan="2">&nbsp;</td>
                        <td><input type="submit" name="button" id="button" value="เข้าสู่ระบบ" /></td>
                      </tr>
                      <tr>
                        <td width="2" height="19">&nbsp;</td>
                        <td width="2">&nbsp;</td>
                        <td class="body"height="19"><a class="body" href="FormRegister.php">สมัครสมาชิก</a> &nbsp;  ลืมรหัสผ่าน</td>
                      </tr>
                      <tr>
                        <td height="17" colspan="3">&nbsp;</td>
                      </tr>
                    </table>
                  </form></td>
                </tr>
              </table>
              
              
            </tr>
          </table> <? }
else{ ?>

<?=$objResult["name"];?>
<li><a href="Logout.php">ออกจากระบบ</a></li>
<? } ?>
            <table width="190" border="0" align="center" cellspacing="0">
              <tr>
                <td width="188" height="66"><table width="188" border="0" cellspacing="0" bgcolor="#C1D4E5">
                  <tr>
                    <td width="186"><img src="pic/t_menu.gif" alt="" width="187" height="64" border="0" align="left" /></td>
                  </tr>
                </table></td>
              </tr>
              <tr>
                <td><table width="187" border="0" align="left" cellspacing="0" background="pic/bg_menu.gif">
                  <tr>
                    <td height="29" colspan="2" rowspan="2">&nbsp;</td>
                    <td width="176" height="24"class="data333"><a href="History.php">เกี่ยวกับ รพ.สต</a></td>
                  </tr>
                  <tr>
                    <td height="32"class="data333"><a href="ShowVM.php" class="menu">วิสัยทัศน์ / พันธกิจ</a></td>
                  </tr>
                  <tr>
                    <td height="23" colspan="2">&nbsp;</td>
                    <td height="23" class="data333">ข้อมูลทั่วไป</td>
                  </tr>
                  <tr>
                    <td height="20">&nbsp;</td>
                    <td>&nbsp;</td>
                    <td height="20" class="data333"><img src="pic/gimmick_05.gif" alt="" width="16" height="16" /> <a href="History1.php"class="menu">ประวัติความเป็นมา</a></td>
                  </tr>
                  <tr>
                    <td width="3" height="26">&nbsp;</td>
                    <td width="2">&nbsp;</td>
                    <td height="26" class="data333"><img src="pic/gimmick_05.gif" alt="" width="16" height="16" /> <a href="Generality.php" class="menu">สภาพทั่วไป</a></td>
                  </tr>
                  <tr>
                    <td height="26">&nbsp;</td>
                    <td>&nbsp;</td>
                    <td height="26" class="data333"><img src="pic/gimmick_05.gif" alt="" width="16" height="16" /> <a href="Economy.php" class="menu">สภาพทางเศรษฐกิจ</a></td>
                  </tr>
                  <tr>
                    <td height="26">&nbsp;</td>
                    <td>&nbsp;</td>
                    <td height="26" class="data333"><img src="pic/gimmick_05.gif" alt="" width="16" height="16" /><a href="Social studies.php" class="menu"> สภาพทางสังคมการศึกษา</a></td>
                  </tr>
                  <tr>
                    <td height="26">&nbsp;</td>
                    <td>&nbsp;</td>
                    <td height="26" class="data333"><img src="pic/gimmick_05.gif" alt="" width="16" height="16" /> <a href="Basic services.php" class="menu">การบริการพื้นฐาน</a></td>
                  </tr>
                  <tr>
                    <td height="22">&nbsp;</td>
                    <td>&nbsp;</td>
                    <td height="22" class="data333"><img src="pic/gimmick_05.gif" alt="" width="16" height="16" /> <a href="Other.php" class="menu">ข้อมูลอื่นๆ</a></td>
                  </tr>
                  <tr>
                    <td height="22" colspan="2">&nbsp;</td>
                    <td height="22" class="data333"><a href="ShowService.php" class="menu">ขั้นตอนให้/รับ บริการ</a></td>
                  </tr>
                  <tr>
                    <td height="23" colspan="2">&nbsp;</td>
                    <td height="23" class="data333"><a href="plan.php" class="menu">ตารางบฏิบัติงาน</a></td>
                  </tr>
                  <tr>
                    <td height="24" colspan="2">&nbsp;</td>
                    <td height="23" class="data333"><a href="map.php" class="menu">แผนที่การเดินทาง</a></td>
                  </tr>
                </table></td>
              </tr>
            </table>
            <table width="100" border="0" align="left">
              <tr>
                <td height="49"><table width="188" height="49" border="0" cellspacing="0" background="pic/t_vdio.jpg">
                  <tr>
                    <td height="49">&nbsp;</td>
                  </tr>
                </table></td>
              </tr>
              <tr>
                <td><iframe width="187" height="156" src="http://www.youtube.com/embed/lmDLwF2HsnE" frameborder="0" allowfullscreen="allowfullscreen"></iframe></td>
              </tr>
              <tr>
                <td height="52"><table width="187" border="0" background="pic/t_vdio2.jpg">
                  <tr>
                    <td height="46">&nbsp;</td>
                  </tr>
                </table></td>
              </tr>
              <tr>
                <td height="158"><iframe width="187" height="156" src="http://www.youtube.com/embed/T2MZaWd73Rk" frameborder="0" allowfullscreen="allowfullscreen"></iframe></td>
              </tr>
            </table>
          <p>&nbsp;</p></td>
          <td width="571" valign="top">
            <p>
                      <!-- InstanceBeginEditable name="EditRegion3" --><table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#ffffff">
                  <tbody>
                    <tr>
                      <td width="29" align="right"><img src="pic/line_01.gif" alt="" height="23" border="0" /></td>
                      <td width="569" align="right" background="pic/line_02.gif"></td>
                      <td align="right" width="36"><img src="pic/line_03.gif" alt="" width="37" height="23" border="0" /></td>
                    </tr>
                    <tr>
                      <td class="menutype" background="pic/line_04.gif"></td>
                      <td><fieldset>
                        <legend align="left"></legend>
                        <table width="95%" align="center">
                                          <p> 
<marquee direction=up height=130 onMouseOut=this.start() onMouseOver=this.stop() scrollamount=1 scrolldelay=30 width=100% truespeed=true style="filter:wave(add=0, lightstrength=80, phase=1, strength=1, freq=2);color:#FF0000">
<center>
                               
                             
                <p class="data3">โรงพยาบาลส่งเสริมสุขภาพตำบลหนองงูเหลือม</p>
                <p class="data2">เป็นผู้นำในการพัฒนาระบบสุขภาพ</p>
                <p class="data2">โดยการที่มีส่วนร่วมของทุกภาคส่วนนำไปสู่การมีสุขภาพดีภายในปี 2555</p>
                </marquee>
                        </table>
                      </fieldset></td>
                      <td class="menutype" background="pic/line_06.gif"></td>
                    </tr>
                    <tr>
                      <td height="34"><img src="pic/line_07.gif" alt="" width="29" height="34" border="0" /></td>
                      <td background="pic/line_08.gif" height="34"></td>
                      <td height="34"><img src="pic/line_09.gif" alt="" width="37" height="34" border="0" /></td>
                    </tr>
                  </tbody>
                </table>
            <table width="560" border="0" align="center" cellspacing="0" background="pic/t_pic.jpg">
              <tr>
                <td height="51">&nbsp;</td>
              </tr>
            </table>
            <table width="500" border="0" align="center" cellspacing="0">
              <tr>
                <td><embed src="http://widget.sanook.com/slide-diy/swf/slide.swf" width="500" height="300" flashvars="xmlPath=http://widget.sanook.com/static_content/farm1/2640/14edf3c52b7196/myslide.xml" bgcolor="#FFFFFF"  wmode="transparent"></embed></td>
              </tr>
            </table>
            <p>&nbsp;</p>
           
            <p>
            <p><a name="ShowHealtnews" id="ShowHealtnews"></a>            
            <div id="menu1">
		  <ul>
					<li class="current_page_item"><a href="#project.php">ข่าวสุขภาพ</a></li>
					<li><a href="ShowArticle.php">บทความ</a></li>
					<li><a href="ShowTrick.php">เคล็ดลับสุขภาพดี</a></li>
					<li><a href="ShowKnowledge.php">เกร็ดน่ารู้</a></li>
					<li></li>
					
		      </ul>
			</div></p>
			<p>&nbsp;</p>
			<table width="560" border="0" align="center" cellspacing="0">
			  <tr>
			    <td><?
include ("ConnectGeneral.php");
		mysql_query ("SET NAMES utf8") or die (mysql_errno());
$strSQL = "SELECT * FROM healtnews ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);

$Per_Page = 4;   // Per Page

$Page = $_GET["Page"];
if(!$_GET["Page"])
{
	$Page=1;
}

$Prev_Page = $Page-1;
$Next_Page = $Page+1;

$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
	$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
	$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
	$Num_Pages =($Num_Rows/$Per_Page)+1;
	$Num_Pages = (int)$Num_Pages;
}

$strSQL .=" order  by date_healtnews DESC LIMIT $Page_Start , $Per_Page";
$objQuery  = mysql_query($strSQL);
$count=0;
$max=2;
?>
<table width='100%' border='0' align='center'>

<?
while($objResult = mysql_fetch_array($objQuery))
	
{
	
?>
  <tr align="left">
   <td><img src="<?=$objResult["pic_healtnews"];?>"  width='70' height='56'alt=""></td>
    
    <td><A HREF="ShowHealtnews1.php?id_healtnews=<?=$objResult[id_healtnews]?>"><?=$objResult["head_healtnews"];?> </A></td>
   
  <td><?=$objResult["date_healtnews"];?></td>
   
 
<?
$count++;
echo"<td>";
if($count <= $max)
echo "<img src='pic/icon_new.gif' width='22' height='9' />";
else echo "&nbsp;";
echo "</td>";


}
?>
</table>

<br>
ทั้งหมด <?= $Num_Rows;?> รายการ : <?=$Num_Pages;?> หน้า:
<?
if($Prev_Page)
{
	echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< ย้อนกลับ</a> ";
}

for($i=1; $i<=$Num_Pages; $i++){
	if($i != $Page)
	{
		echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
	}
	else
	{
		echo "<b> $i </b>";
	}
}
if($Page!=$Num_Pages)
{
	echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>ต่อไป>></a> ";
}
mysql_close();
?></td>
		      </tr>
		    </table><!-- InstanceEndEditable -->
                    
          <p></td>
          <td width="198" align="center" valign="top"><table width="204" border="0" cellspacing="0">
            <tr>              <td width="202" height="156" valign="top"><table width="180" border="0" align="right" cellspacing="0">
              <tr>
                  <td><img src="pic/t_link.gif" alt="" width="196" height="49" align="right" /></td>
                </tr>
                <tr>
                  <td><table width="196" border="0" align="right" cellspacing="0" background="pic/bg_menu.gif">
                    <tr>
                      <td  height="26" >&nbsp;</td>
                      <td class="data333"><a href="http://nptho.moph.go.th/muang/tonsamrong/index.php">สถานีอนามัยต้นสำโรง</a></td>
                    </tr>
                    <tr>
                      <td height="26">&nbsp;</td>
                      <td class="data333"><a href="http://203.157.151.9/hnongkadone/p1.html">สถานีอนามัยหนองกะโดน</a></td>
                    </tr>
                    <tr>
                      <td height="23">&nbsp;</td>
                      <td class="data333"><a href="http://nptho.moph.go.th/muang/samkwai/index.php">สถานีอนามัยสามควายเผือก</a></td>
                    </tr>
                    <tr>
                      <td height="26">&nbsp;</td>
                      <td class="data333"><a href="http://nptho.moph.go.th/08336/index.html">สถานีอนามัยหนองปากโลง</a></td>
                    </tr>
                  </table></td>
                </tr>
            </table></td>
            </tr>
          </table>
            <table width="200" border="0" align="right" cellspacing="0">
              <tr>
                <td class="data33"width="190" align="left" valign="top"><a href="http://www.moph.go.th/moph2/index4.php"><img src="pic/mophy1.jpg" width="190" height="60" /></a></td>
              </tr>
              <tr>
                <td class="data33" height="57" valign="top"><a href="http://www.mohanamai.com/"><img src="pic/1275708636.png" alt="" width="187" height="50" /></a></td>
              </tr>
              <tr>
                <td class="data33"height="51" valign="top"><a href="#"><img src="pic/h_system.jpg" alt="" width="187" height="50" /></a></td>
              </tr>
              <tr>
                <td class="data33"height="60" valign="top"><a href="http://www.boe.moph.go.th/boedb/SrrtSubNetwork/index.php"><img src="pic/20110222_97236214.jpg" alt="" width="187" height="53" /></a></td>
              </tr>
            </table>
            <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <table width="200" border="0" align="right" cellspacing="0">
            <tr>
              <td align="center"><iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2F%25E0%25B9%2582%25E0%25B8%25B5%25E0%25B8%25A3%25E0%25B8%2587%25E0%25B8%259E%25E0%25B8%25A2%25E0%25B8%25B2%25E0%25B8%259A%25E0%25B8%25B2%25E0%25B8%25A5%25E0%25B8%25AA%25E0%25B9%2588%25E0%25B8%2587%25E0%25B9%2580%25E0%25B8%25AA%25E0%25B8%25A3%25E0%25B8%25B4%25E0%25B8%25A1%25E0%25B8%25AA%25E0%25B8%25B8%25E0%25B8%2582%25E0%25B8%25A0%25E0%25B8%25B2%25E0%25B8%259E%25E0%25B8%2595%25E0%25B8%25B3%25E0%25B8%259A%25E0%25B8%25A5%25E0%25B8%25AB%25E0%25B8%2599%25E0%25B8%25AD%25E0%25B8%2587%25E0%25B8%2587%25E0%25B8%25B9%25E0%25B9%2580%25E0%25B8%25AB%25E0%25B8%25A5%25E0%25B8%25B7%25E0%25B8%25AD%25E0%25B8%25A1%2F215824441840062&amp;width=200&amp;height=258&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=false&amp;header=false" scrolling="No" frameborder="0" style="border:none; overflow:hidden; width:200px; height:258px;" allowtransparency="true"></iframe></td>
            </tr>
        </table>
          
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p>
          <p>&nbsp;</p></td>
        </tr>
      </table>
      <table width="980" border="0" align="center" cellspacing="0" background="pic/foodter.jpg">
        <tr>
          <td height="73">&nbsp;</td>
        </tr>
      </table>
      <p>&nbsp;</p></td>
  </tr>
</table>
</body>
<!-- InstanceEnd --></html>

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-02-24 01:17:44 By : น้องอาโป
 


 

No. 6

Guest


ช่วยหน่อยค่่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-02-24 17:20:59 By : น้องอาโป
 


 

No. 7

Guest


ช่วยหน่อยค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-02-25 02:49:14 By : น้องอาโป
 


 

No. 8



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



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

ตาลาย..-*-
ลองคอมเม้นบรรทัด 478 ดูว่าหายปะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-02-25 03:12:53 By : ekeak
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ดูรูป 2รูป นี้ให้หน่อยค่ะ อยากรู้ว่ามันเป็นเพราะอะไรค่ะ ใครรู้ช่วยตอบหน่อยค่ะ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 03
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 อัตราราคา คลิกที่นี่