ยินดีต้อนรับคุณ, บุคคลทั่วไป กรุณา เข้าสู่ระบบ หรือ ลงทะเบียน

เข้าสู่ระบบด้วยชื่อผู้ใช้ รหัสผ่าน และระยะเวลาในเซสชั่น

  แสดงกระทู้
หน้า: [1] 2 3 ... 24
1  พัฒนาเว็บไซต์ / Programming / Re: การเรียก Bootstrap มาใช้ ผมสงสัยครับ เมื่อ: 21 กันยายน 2016, 10:52:10
ถ้าเรียกจาก CDN จะช่วยลดภาระ Request ที่เรียกมายังเซิฟเวอร์เราครับ
จากโค็ดแบบแรก 4 Request เซิฟเวอร์รับภาระทั้งหมดในการตอบกลับไปยัง Client
แบบที่สองจะเกิด Request แค่ 1 Request ที่เซิฟเวอร์รับภาระในการตอบกลับไปยัง Client

และถ้าใช้ CDN จะทำให้เว็บโหลดเร็วขึ้นแต่ไม่เสมอไปครับอาจจะช้าลงด้วย ขึ้นอยู่กับ CDN แต่ละที่ครับ

ส่วนการใช้งานไม่ต่างกันครับ
2  พัฒนาเว็บไซต์ / CMS & Free Script / Re: สอบถามเกี่ยวกับ php หน่อยครับ เมื่อ: 02 ตุลาคม 2014, 22:55:22
อ้างถึง
<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>Document</title>
</head>
<body>
   <?php
      if (!empty($_POST)) {
         $std_name = $_POST["std_name"];
         echo "<p align=\"center\">ชื่อของท่านคือ : <b> $std_name </b></p></br>";
      }else{
   ?>
         <form method="post" name="form1" action="<?php echo $_SERVER['PHP_SELF']; ?>">
            ชื่อ:<input type="text" name="std_name">
         </form>
   <?php }   ?>
</body>
</html>

ถ้ามีการส่งค่า จะแสดงข้อความ ถ้าไม่มีให้โชว์ form
3  พัฒนาเว็บไซต์ / Programming / Re: รบกวนถามคำสั่งใน php หน่อยครับ เมื่อ: 22 กันยายน 2014, 22:28:06
โค๊ด:
<html>

<head>
    <title>ร้านไอศกรีม</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <style type="text/css">
    <!-- .style1 {
        font-weight: bold;
        font-size: 50px;
        font-style: italic;
        color: #FFFFFF;
    }
    body {
        background-color: #000066;
    }
    body,
    td,
    th {
        color: #FFFFFF;
    }
    .style4 {
        font-size: 36
    }
    .style6 {
        font-size: 24px
    }
    -->
    </style>
</head>

<body>
    <div align="center" class="style1">ร้านไอศกรีม</div>
    <form name="form1" method="post" action="">
        <table width="200">
            <tr>
                <td>
                    <span class="style6">OrderNo</span>
                </td>
                <td>
                    <input name="order" type="text" id="order" size="10">
                </td>
            </tr>
            <tr>
                <td height="41">
                    <span class="style6">Menu</span>
                </td>
                <td>
                    <span class="style6">
                        <select name="menu" id="menu">
                            <option value="ไอศกรีมรสช็อกโกแลต">ไอศกรีมรสช็อกโกแลต</option>
                            <option value="ไอศกรีมรสวนิลา">ไอศกรีมรสวนิลา</option>
                            <option value="ไอศกรีมรสมะนาว">ไอศกรีมรสมะนาว</option>
                            <option value="ไอศกรีมรสสตอเบอร์รี่">ไอศกรีมรสสตอเบอร์รี่</option>
                        </select>
                    </span>
                </td>
            </tr>
            <tr>
                <td height="42">
                    <span class="style6">Topping</span>
                </td>
                <td>
                    <span class="style6">
                        <input name="whipcream" type="checkbox" id="whipcream" value="วิปครีม">วิปครีม
                        <input name="oreo" type="checkbox" id="oreo" value="โอริโอ้">โอริโอ้
                        <input name="pepo" type="checkbox" id="pepo" value="ปีโป้">ปีโป้
                    </span>
                </td>
            </tr>
            <tr>
                <td height="62">
                    <span class="style6">Size</span>
                </td>
                <td>
                    <span class="style6">
                        <label>
                            <input type="radio" name="size" value="เล็ก" id="size_0">S
                        </label>
                        <br>
                        <label>
                            <input type="radio" name="size" value="กลาง" id="size_1">M
                        </label>
                        <br>
                        <label>
                            <input type="radio" name="size" value="ใหญ่" id="size_2">L
                        </label>
                        <br>
                    </span>
                </td>
            </tr>
            <tr>
                <td height="96">
                    <span class="style6">Comment</span>
                </td>
                <td>
                    <span class="style4">
                        <textarea name="etc" id="etc" cols="45" rows="5"></textarea>
                    </span>
                </td>
            </tr>
            <tr>
                <td height="35" colspan="2">
                    <h1>
                        <input type="submit" name="Submit" id="button" value="ตกลง">
                        <input type="reset" name="Reset" id="Reset" value="ยกเลิก">
                    </h1>
                </td>
            </tr>
        </table>
    </form>
    <?php
      
if(!empty($_POST)) { 
      echo 
$_POST['order'];
      echo 
$_POST['menu'];
    }
    
?>

</body>
</html>

แก้ + ทดสอบ ให้แล้วครับ
4  พัฒนาเว็บไซต์ / Programming / Re: รบกวนถามคำสั่งใน php หน่อยครับ เมื่อ: 22 กันยายน 2014, 22:11:26
โค๊ด:
<?php
if(!empty($_POST)) { 
echo 
$_POST['name'];
echo 
$_POST['sport'];
}
5  พัฒนาเว็บไซต์ / Programming / Re: อยากเขียน php เป็น ช่วยผมด้วยผมไม่ไหวแล้วววววววว เมื่อ: 17 พฤษภาคม 2013, 23:59:57
พอรู้ syntax รู้โครงสร้างต่างๆแล้ว ก็ให้ตั้งโปรเจคขึ้นมา 1 ตัวครับ อย่างเช่น เว็บเกมส์ เว็บฟังเพลง อะไรที่ไม่ซับซ้อนมาก แล้วก็เริ่มทำให้สำเร็จครับ

เพราะหนังสือสอนแค่วิธีเขียน ส่วนประสบการ์ณอยู่ที่การลงมือทำครับ เพราะถ้าเขียนเป็น 1 เว็บก็เท่ากับว่าสามารถเขียนเว็บอื่นได้อีกหลายเว็บครับ
6  พัฒนาเว็บไซต์ / CMS & Free Script / Re: [แจกของฟรี] Theme Variety Wordpress สวยจิงสวยจังถ้าพลาดแล้วจะเสียใจให้ระดับ Sเลย เมื่อ: 15 พฤษภาคม 2013, 19:15:02
อันนี้ฟรีหรือของซื้อขายคะ จะหาซื้อของแท้

ของขายครับ ตามลิ้งไปเจอ
http://themeforest.net/item/al...e-blog-wordpress-theme/3925878
7  พัฒนาเว็บไซต์ / Programming / Re: เขียนเว็บ เทสเว็บสำหรับ iphone ipad หรือ android บนวินโด *o* เมื่อ: 19 มิถุนายน 2012, 20:18:24
ที่ผมใช้ เป็นปลั๊กอิน ของ google chrome ครับ
1. User-Agent Switcher for Chrome เอาไว้เปลี่ยน User Agent เป็น iPad iPhone หรือ Android
2. Window Resizer สำหรับ เลือกขนาดหน้าจอ ของ chrome สามารถกำหนดขนาดเองก็ได้ หรือเลือกใช้ขนาดที่มีมาให้ก็ได้ ในที่นี้ มีขนาดของ พวก Mobile มาให้บ้างแล้วครับ

ที่สำคัญฟรีครับ
8  ความรู้ทั่วไป / General (ถามคุยวิชาการ IM) / Re: อยากเพิ่ม LIKE ต้องทำยังไงมั่ง ใครมี ไอเดีย pm บอกหน่อย เมื่อ: 09 มิถุนายน 2012, 19:36:41
เอากล่อง like เด้งขึ้นมาตอนเข้าเว็บเลยครับ คนจะไลค์ให้เยอะเลย ใช้ jquery fancybox ก็ได้ครับ
9  Host and Domain / Host & Domain (general) / Re: แตงโม/บางรัก ล่มหรือเปล่า -*- เมื่อ: 25 พฤษภาคม 2012, 09:31:01
พึ่งเช่าเมื่อวาน วันนี้ล่ม แบบนี้ ไม่ไหวนะ  wanwan044
10  อื่นๆ / Cafe / Re: อยากขาย xat นี้ต้องทำไงหรอ เมื่อ: 03 พฤษภาคม 2012, 09:25:42
เราซื้อเอฟเฟคโดยชำระเงินผ่าน paypal ให้ xat.com ครับ โดยเราก็จะได้เอฟเฟคมาอยู่กับไอดีเราก่อน พอมีคนมาติดต่อซื้อ เราก็โอนเอฟเฟค จากไอดีเราให้คนที่ซื้อครับ
11  พัฒนาเว็บไซต์ / CMS & Free Script / Re: maxsite ดับแล้ว ??? เมื่อ: 02 พฤษภาคม 2012, 15:12:26
ขอบคุณ Maxsite เช่นกันครับ ตอนนั้นทำเป็น เว็บฟังเรดิโอออนไลน์ ผมก็เริ่มโม php เป็นก็จาก maxsite เหมือนกันครับ

 wanwan017
12  ความรู้ทั่วไป / SEO Guideline / Re: Youtube ไม่ใช่แค่เว็บดูคลิป แต่มันเปรียบกับซับมิทชั้นยอด ได้ผลไว เมื่อ: 19 เมษายน 2012, 16:01:55
ขอบคุณครับ +1
13  พัฒนาเว็บไซต์ / Programming / Re: ใครเริ่มศึกษา jquerymobile บ้างแล้วครับ เมื่อ: 19 เมษายน 2012, 13:30:51
ไว้จะลองเอาไปทำเล่นดูบ้าง น่าสนใจดีครับ
14  Host and Domain / Promotion & Coupon / Re: just $2.00!* Use code: gooddeal Godady เมื่อ: 12 เมษายน 2012, 10:32:28
ขอบคุณครับ อันเดียวก็พอ จดเก็บไว้ รอให้หมดอายุทีละอัน
15  ความรู้ทั่วไป / Amazon / Re: โดนเตือน Trademark ครั้งแรกเลย ต้องทำอะไรบ้างครับ เมื่อ: 16 กุมภาพันธ์ 2012, 12:18:12
CHARLES J. HARDER เป็นนักกฎหมาย จากสำนักกฎหมาย
http://www.wrslawyers.com/attorneys/charles-harder.asp ที่มีลูกค้าอยู่ในวงกาวบันเทิง สื่อออนไลน์ และสื่อโฆษณาต่างๆ เค้าบอกว่าคุณเอาภาพลูกค้าของเค้าไปใช้ในเชิงพาณิชย์โดยไม่ได้รับอณุญาต เป็นการละเมิดกฎหมายของรัฐแคลิฟอร์เนีย ไม่ได้เห็นที่มาที่ไปของ email เลยไม่รู้ว่าเป็นของจริง หรือ Phishing

อย่างไรก็ตาม เคสนี้ไม่เหมือนเคส Domain Trademark ที่ส่วนใหญ่ใช้อนุญาโตตุลาการ ซึ่งค่อนข้างรอมชอม เคสนี้ใช้นักกฏหมาย ดูแล้วน่าจะโดหกว่า(ถ้าจริง) ดาราพวกนี้ทุกอย่างเป็นเงินเป็นทอง และมีทนายความคอยติดตามดูแลไม่ให้ใครละเมิดได้

โดยสรุปที่เค้าต้องการคือ
- หยุดใช้ทันทีและหยุดใชอย่างถาวร พวกชื่อ ภาพถ่าย สิ่งซึ่งแสดงความเป็นตัวตนและภาพลักษณ์ต่างของลูกค้าของเค้าอันเป็นไปเพื่อการตลาดการโฆษณาและโปรโมชั่น
- เค้าขอสำเนาของวัสดุและข้อมูลต่างๆที่เราได้นำชื่อ ภาพถ่าย สิ่งซึ่งแสดงความเป็นตัวตนและภาพลักษณ์ต่างๆของลูกค้าของเค้าไปใช้
- เค้าขอให้เรารักษาวัสดุและข้อมูลต่างๆที่เรานำไปใช้ให้อยู่ในสภาพปกติเหมือนที่เป็นอยู่ในปัจจุบัน
- เค้าขอให้เราเก็บรักษาวัสดุและข้อมูลรวมทั้งสิ่งที่เกี่ยวข้องต่างๆที่เรานำไปใช้
เค้าขอให้คุณยืนยันเป็นลายลักษณ์อักษรภายในสี่สิบแปดชั่วโมงว่าคุณจะปฏิบัติตามที่เค้าร้องขอข้างต้น
จดหมายนี้ไม่ได้เป็นคำสั่งเต็มรูปแบบของข้อเท็จจริงทั้งหมดที่เกี่ยวข้องกับเรื่องนี้และทั้งไม่ควรถูกตีความว่ามีการปล่อยหรือมีการสละสิทธิใดๆในการเรียกร้องการเยียวยาที่มีให้กับลูกค้าของเค้าทั้งหมด  จดหมายฉบับนี้เป็นความลับและถือเป็นข้อเสนอที่จะประนีประนอมตาม California Evidence Code § 1152, et seq., Federal Rules of Evidence, Rule 408, et seq., และหน่วยงานทางกฎหมายที่เกี่ยวข้อง ดังนั้นจดหมายฉบับนี้ไม่ควรได้รับการเผยแพร่แก่บุคคลภายนอกของ บริษัท หรือตัวแทนทางกฎหมายของท่านและไม่สามารถนำไปใช้เพื่อวัตถุประสงค์ในการดำเนินการทางกฎหมายใดๆ

อย่างแรกอยากให้เจ้าของกระทู้พิจารณาให้แน่ใจว่าไม่ใช่ Phishing email เพราะจดหมายออกจะแปลกๆ พอดีไม่ใช่นักกฏหมายก็เลยไม่ค่อยเข้าใจว่าเคสนี้จะดำเนินต่อไปอย่างไร  ที่สงสัยว่าจะเป็น Phishing email ก็เพราะย่อหน้าสุดท้ายของจดหมาย แต่ก็แค่สงสัยนะ บางทีมันส่ง email ที่ทำให้เราตกใจแล้วรีบตอบกลับไปเพื่อเช็คว่า email จริงหรือ email มั่ว พอเราตอบกลับไปมันก็รู้เลยว่า email จริง ทีนี้จะมี Scam email ตามาเป็นชุด

ลองดู email address ของคนส่ง แล้วพิจารณาให้ดีครับ


ขอบคุณครับ +1

ส่งมาจากอีเมลด้านล่างครับ
โค๊ด:
จาก: Raquel Rubio (rrubio@wrslawyers.com) ในนามของ Charles Harder (charder@wrslawyers.com)

สินค้าที่โดนเป็นนาฬิกา ครับ ตัวเดียวเลย มีคำ TM 3 จุด คือ ตรงรายละเอียด 2 จุด กับ title อีก 1 จุด

ลบซับนั้นทิ้งไปแล้ว นิ่งไว้เหมือนกันครับ ไม่กล้าตอบกลับ
16  ความรู้ทั่วไป / Amazon / Re: โดนเตือน Trademark ครั้งแรกเลย ต้องทำอะไรบ้างครับ เมื่อ: 16 กุมภาพันธ์ 2012, 08:51:33
เขาบอกว่าเว็บละเมิดชื่อสินค้า น่าจะโดนตัวแทนจำหน่ายแจ้งไปบริษัทใหญ่

เขาให้หยุดใช้งานเว็บไซต์ดังกล่าว

คิดว่าลบเว็บทิ้งไปเลยจะปลอดภัยกว่าครับ


ขอบคุณครับ ผมปิด sub นั้นไปแล้ว แต่ยังไม่ได้ตอบเมลกลับครับ
17  ความรู้ทั่วไป / Amazon / โดนเตือน Trademark ครั้งแรกเลย ต้องทำอะไรบ้างครับ เมื่อ: 16 กุมภาพันธ์ 2012, 08:39:02
ข้อความในอีเมล

โค๊ด:
Re:       Sandra Bullock – Commercial Infringement re: Watch Sales
 
To whom it may concern:
My law firm is litigation counsel for actress Sandra Bullock.  I am writing with reference to my client’s substantial claims against your company and all those acting in concert with it (collectively, “you” or “your”), in connection with your unauthorized use of my client’s name, photograph, identity and persona in your commercial marketing and advertising (collectively, the “Advertising”), including the use of my client’s name, photograph, identity and persona at your company’s website to advertise, market, and promote your products.  Enclosed is a screenshot from your website showing the use of my client’s name to promote your sales.
As you know, my client has never given you permission to use her name, photograph, identity or persona in connection with the promotion of either your company or any of your products or services.  Accordingly your actions constitute an unauthorized commercial infringement of my client’s name, photograph, identity and persona, in violation of California Civil Code section 3344 and California common law, and trademark infringement in violation of the Federal Lanham Act, 15 U.S.C. section 1125, among other causes of action, and thereby exposing you to monetary damages equal to the value of my client’s name to promote and sell commercial products in the United States and worldwide; disgorgement of your profits; reimbursement of my client’s attorneys’ fees and costs; treble damages; and punitive damages.
Your misappropriation of my client’s name, identity and persona violates her policy of strictly controlling the exploitation of her image and persona for commercial purposes. You have intentionally taken from my client the right to protect and control the use of her name, identity and persona, in violation of California law, and the value of the injury is substantial.  Bette Midler v. Ford Motor Co., 849 F.2d 460, 463 (9th Cir. 1988) (“What [defendants] sought was an attribute of [Bette] Midler’s identity [when defendants used her publicity rights in an advertisement for a Ford automobile].  Its value is what the market would have paid for Midler to have sung the commercial in person.”) (Emphasis added.)
Your website further is misleading and injurious to my client by falsely implying that she voluntarily acquiesced to the use of her name, identity and persona to promote your company and its products – uses that she would not have permitted, if at all, absent prior express written approval and a substantial payment.  Thus, your unauthorized commercial use of my client’s name without her consent exposes you to claims for false endorsement and false association in violation of the Federal Lanham Act, 15 U.S.C. section 1125(a), which entitles my client to recover disgorgement of your profits as well as treble damages in the case of a willful violation such as this.
My client also is entitled to seek reimbursement of her attorneys’ fees and costs pursuant to both California Civil Code section 3344(a), and 15 U.S.C. section 1117.
In light of the foregoing, demand is hereby made that you:
1. Immediately and permanently remove and discontinue the use of my client’s name, photograph, identity and persona from all marketing, advertising and promotion for your companies, their affiliated companies, and each of their respective products and services, including without limitation, advertising, marketing and promotion on or in connection with your websites, internet search engines (including without limitation, Google), keywords, and AdWords.
2. Promptly provide my office with a copy of all materials and information related to the use of my client’s name, photograph, identity or persona in connection with your companies, their affiliated companies, and each of their respective products and services, including color copies of all marketing, advertising and promotional materials that use my client’s name, photograph, identity or persona, including but not limited to all webpages, catalogs, brochures, marketing emails (a.k.a. email blasts), and all other forms of advertising, marketing or promotion.
3. Immediately preserve exact color copies of all of your websites, webpages and all other forms of advertising, marketing, and promotion, as they exist and appear now, before any changes are made, including to comply with Demand No. 1, above.
4. Immediately preserve all other physical and electronic documents, materials and data in your possession, custody or control that are or might be relevant or related to the foregoing matters.
Please confirm in writing within forty-eight (48) hours of your receipt of this demand that the foregoing demands will be and are being complied with.
This letter is not intended as a full statement of all facts relating to this matter, nor should anything herein be construed as a waiver, release or relinquishment of any rights, remedies, claims or causes of action available to my client, all of which are reserved.  This letter is confidential and constitutes an offer to compromise pursuant to California Evidence Code § 1152, et seq., Federal Rules of Evidence, Rule 408, et seq., and any related legal authorities.  As such, this letter may not be disseminated to anyone outside of your companies or their legal representatives, and may not be used in any legal proceeding for any purpose.
We look forward to your prompt response to this letter.
Very truly yours,
 
WOLF, RIFKIN, SHAPIRO, SCHULMAN & RABKIN, LLP
 
/s/
 
CHARLES J. HARDER
 
CH:rr
Enclosure
 
cc:        John J. Chamblee, Esq.
            Cliff Gilbert-Lurie, Esq.
            Jamey Cohen, Esq.

ดูจากไฟล์แนบ โดนคำว่า Sandra bullock ในเนื้อหาสินค้า

ใครเก่ง eng ช่วยทีครับ  wanwan017
18  Host and Domain / Promotion & Coupon / Re: GoDaddy 1.99$ ต้อนรับเทศกาลแห่งความรัก^^ เมื่อ: 14 กุมภาพันธ์ 2012, 13:08:51
ขอบคุณครับ
19  พัฒนาเว็บไซต์ / CMS & Free Script / Re: เพิ่ม ฟังชั่น วิทยุออนไล ในเว็บ เมื่อ: 10 มกราคม 2012, 18:21:06
เช่า port radio ครับ บางเจ้าจะทำระบบให้ครบเลย คือ มีโค็ดสำหรับติดเว็บให้พร้อม รองรับคนฟังก็ อยู่ที่ package แต่ละเจ้า แล้วแต่ราคาครับ

เวลาจัด ก็ใช้ โปรแกรม sam broadcaster สำหรับเปิดเพลง + พูดไมค์
20  พัฒนาเว็บไซต์ / Free Site / Re: อยากได้ Mac แต่อยากทราบว่าใน Mac ทำเว็บยากกว่า PC ไหม? เมื่อ: 10 มกราคม 2012, 15:44:38
ที่ผมซื้อ imac กะมาทำเว็บกับเขียนโปรแกรม ภาษา objective-c

เลยอยากถามว่า โปรแกรมที่ใช้กันส่วนมากซื้อหรือแคล็กกันครับ อย่างโปรแกรม coda กับ espresso ที่ต้องใช้ในการทำเว็บ

ถ้าแบบแคล็กมีแหล่งโหลด แนะนำผมหน่อยครับ  wanwan004
หน้า: [1] 2 3 ... 24