|
|
|
สอบถามเกี่ยวกับเครื่องหมาย ' กับ " ค๊ะ ด้านล่างนี้เป็นโค๊ดสำหรับส่งอีเมลล์ด้วย PHP ค๊ะ |
|
|
|
|
|
|
|
โค๊ดด้านล่างนี้ทดสอบไม่ผ่านค๊ะ error บอกว่าให้เปลี่ยนเครื่่องหมาย " ให้เป็น '
จาก
<img src="http://www.mysite.com/img/Welcome.png" width="auto" height="auto" alt="">
ให้เปลี่ยนเป็น
<img src='http://www.mysite.com/img/Welcome.png' width='auto' height='auto' alt=''>
คำถามนะค๊ะ อยากทราบว่าทำไมต้องใช้เครื่องหมาย ' ด้วยค๊ะ แล้วทำไมใช้เครื่องหมาย " แล้ว Error ค๊ะ
ตอบ สัญลักษณ์ " " คือตัวเดียวกัน แต่การใช้ต่างกัน ถ้าอยู่ภายใน " " ให้ใช้ ' ' แทน ตอนสั้น ๆ คงเข้าใจนะครับ
|
|
|
|
|
Date :
2012-10-21 22:53:16 |
By :
bloodlinecom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$str = "<img src=\"http://www.mysite.com/img/Welcome.png\" width=\"auto\" height=\"auto\" alt=\"\">";
or
Code (PHP)
$str = '<img src="http://www.mysite.com/img/Welcome.png" width="auto" height="auto" alt="">';
|
|
|
|
|
Date :
2012-10-22 08:03:13 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|