Team17 is today announcing an end to the MetaWorms NFT project.
We have listened to our Teamsters, development partners, and our games’ communities, and the concerns they’ve expressed, and have therefore taken the decision to step back from the NFT space.
$conn = new PDO("mysql:host=$servername;dbname=$myDB", $username, $password); $SQL=$conn->prepare('select id ,name, passwords from usertable where id = :UserID'); $SQL->bindValue(':UserID',$UserID,PDO::PARM_INT); $SQL->execute();
需要特別注意的地方: 如果我們是在WordPress 使自訂個人主題時,就要留意在header.php 跟footer.php 裡面有沒有<?php wp_head();?>和<?php wp_footer(); ?> 這兩句代碼,一些WordPress 的功能比如 Top menu bar 和一些外掛(Plugin) 都需要有它們才可以順利執行。
#contentbox { width:900px; }
@media only screen and (max-width: 500px) {
#contentbox { width:100%; }
}
用以上的CSS 就可以在螢幕寛度不大於500px時,寛值由900px轉換成100%,原因是在行動裝置比如智能電話上,螢幕都會比較小,我們都要盡量的用盡100%的寛度,以確保我們的文字及圖片不會太壓縮。所以在小型裝置上我們都會以一個區塊一個頁面的方式來顯示,把Page 的 Blog 分拆成一個個的區塊。