0

HTML を Mysql データベースに保存しているときに、「0 行が影響を受けました。警告: #1265 行 1 の列 'コンテンツ' のデータが切り捨てられました」というエラー メッセージが表示されます。

Html は次のとおりです。

私たちに関しては
    <p>We are revolutionising the way people shop around the world by providing the freedom to purchase from any website using your very own US or UK shipping address. We're used by both consumers and businesses to buy all sorts of products and merchandise from overseas. Have a look at what people are <a href="/pages/testimonials">saying</a> about us.</p>
    <h2 class="title" id="title"> We<span class="green"> Offer</span> </h2>
    <ul class="arr">
      <li>Great deals from all over the globe on a range of products from the hottest fashion to the latest technology.</li>
      <li>Shipping rates designed with the consumer in mind!</li>
      <li>Social Shipping- buy with friends and create one large package for Big Savings!</li>
      <li>A clever Total Cost Calculator that allows you to see the Total Cost to deliver your package to your door- duties and taxes included!</li>
    </ul>
    <h2 class="title" id="title"> So who are<span class="green"> We</span> </h2>
    <ul class="arr">
      <li><a href="/bx/enUS/pages/the-team">Check-out our team's profiles.</a></li>
    </ul>
    <h2 class="title" id="title"> Who uses <span class="green"> Store to Ship?</span> </h2>
    <p>Store to Ship is used by private consumers and businesses to buy all sorts of products and merchandise overseas. Have a look at what people are saying about us.</p>
4

3 に答える 3

6

これは、挿入する値の長さが、列で定義された長さよりも大きいためです。列の長さを増やします。

于 2013-09-24T06:56:28.903 に答える
0

Text DataTypeHTMLコードを格納するために使用します。

データの長さが定義された長さを超えています。

CREATE TABLE IF NOT EXISTS menu ( id int(11) NOT NULL AUTO_INCREMENT, menu_name varchar(255) NOT NULL, menu_url varchar(255) NOT NULL, content TEXT() NOT NULL, image varchar(255) NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
于 2013-09-24T07:01:49.777 に答える