|
|
|
จะใช้ตัวดำเนินการเปรียบเทียบข้อความ ว่ามันเท่ากับค่าที่รับมาหรือไม่ต้องทำยังไงค่ะ |
|
|
|
|
|
|
|
if($name=="BOLIDEN")
|
|
|
|
|
Date :
2012-09-26 12:44:19 |
By :
popypreaw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่แล้วค่ะ เพราะว่าข้อมูลมันจะมีช่องว่างอยู่
Code (PHP)
<?
$pid=$_GET['pid'];
$name=$_GET['name'];
$id=$_GET['id'];
$r=$_GET['r'];
$aid=$_GET['aid'];
$type=$_GET['type'];
$host='localhost';
$username='batteryb';
$pass_word='c2uulAnMD0';
$db='batteryb_Search';
$Conn = mysql_connect( $host,$username,$pass_word) or die ("ติดต่อฐานข้อมูลไม่ได้");// ติดต่อฐานข้อมูล
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้"); // เลือกฐานข้อมูล
$sql = "select * from battery where Bat_ID = '$aid' "; // คำสั่ง select * คือเีรียกข้อมูลของ field ทั้งหมด , คำสั่ง form customer คือ เีรียกข้อมูลจากตาราง customer
mysql_query("SET NAMES utf8",$Conn); // set กำหนดมาตราฐาน
$result = mysql_query($sql) or die(mysql_error());
while($row = mysql_fetch_array($result))
{
$pic=$row['picture'];
/*echo " $row[Bat_Name]" ;
echo " $row[Bat_Type]" ;
echo " $row[Bat_R]" ;*/
if($name=="BOLIDEN")
{
echo "<A HREF=http://www.batterybbdelivery.com/boliden.php> $row[Bat_Name] $row[Bat_Type] $row[Bat_R]<br></A>";
}
else if($name == "GS"&&$type =="แบตเตอรี่น้ำ"&&$r =="NS100" )
{
echo "<A HREF=http://www.batterybbdelivery.com/gs-pickup.php> $row[Bat_Name] $row[Bat_Type] $row[Bat_R]<br></A>";
}
else if($name == "GS"&&$type =="แบตเตอรี่น้ำ" )
{
echo "<A HREF=http://www.batterybbdelivery.com/gs-car.php> $row[Bat_Name] $row[Bat_Type] $row[Bat_R]<br></A>";
}
else if($name == "GS"&&$type =="แบตเตอรี่กึ่งแห้ง" )
{
echo "<A HREF=http://www.batterybbdelivery.com/gs-mf.php> $row[Bat_Name] $row[Bat_Type] $row[Bat_R]<br></A>";
}
else if($name=="PANASONIC"&&$r=="105D31R-MF")
{
echo "<A HREF=http://www.batterybbdelivery.com/panasonic-pickup.php> $row[Bat_Name] $row[Bat_Type] $row[Bat_R]<br></A>";
}
else if($name=="PANASONIC"&&$r=="105D31L-MF")
{
echo "<A HREF=http://www.batterybbdelivery.com/panasonic-pickup.php> $row[Bat_Name] $row[Bat_Type] $row[Bat_R]<br></A>";
}
else if($name=="PANASONIC"&&$type =="แบตเตอรี่กึ่งแห้ง")
{
echo "<A HREF=http://www.batterybbdelivery.com/panasonic_mf.php> $row[Bat_Name] $row[Bat_Type] $row[Bat_R]<br></A>";
}
else if($name=="YUASA")
{
echo "<A HREF=http://www.batterybbdelivery.com/yuasa_battery.php> $row[Bat_Name] $row[Bat_Type] $row[Bat_R]<br></A>";
}
else if($name=="PUMA")
{
echo "<A HREF=http://www.batterybbdelivery.com/puma.php> $row[Bat_Name] $row[Bat_Type] $row[Bat_R]<br></A>";
}
else
echo "error";
}
?>
|
|
|
|
|
Date :
2012-09-26 12:51:47 |
By :
lhin3800 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$text = "12345 6789";
$rep = str_replace(" ","",$text);
print $rep //ผลลัพธ์ คือ 123456789ครับ
ลบช่องว่างครับ
|
|
|
|
|
Date :
2012-09-26 13:08:29 |
By :
popypreaw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แต่ดึงค่ามาจากฐานข้อมูลนะคะ ลองแบบนี้ก็ไม่ได้อะค่ะ
Code (PHP)
$text = "$name";
$rep = str_replace(" ","",$text);
print $rep ;
|
|
|
|
|
Date :
2012-09-26 14:22:47 |
By :
lhin3800 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วได้ค่าออกมาเป็นยังไงครับ ดูตัวอย่างหน่อย
|
|
|
|
|
Date :
2012-09-26 14:27:17 |
By :
popypreaw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วค่ะ
Code (PHP)
$text = "$name";
$rep = str_replace(" ","",$text);
//print $rep ;
$text1 = "$r";
$rep1 = ereg_replace('[[:space:]]+', '', trim($text1));
//print $rep1 ;
if($rep == "GS"&&$rep1 =="NS100L" )
{
echo "<A HREF=http://www.batterybbdelivery.com/gs-pickup.php> $row[Bat_Name] $row[Bat_Type] $row[Bat_R]<br></A>";
}
|
|
|
|
|
Date :
2012-09-26 15:56:04 |
By :
lhin3800 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|