More Related Content
Similar to PHPから離れて感じるPHPの良さ
Similar to PHPから離れて感じるPHPの良さ(20)
More from Shinichi Takahashi
More from Shinichi Takahashi(15)
PHPから離れて感じるPHPの良さ
- 5. PHPとの関わり
• 1995.06: v1.0
• 1996.04: v2.0
• 1998.06: v3.0
• 2000.05: v4.0
• 2004.07: v5.0
• 2005.11: v5.1
• 2006.11: v5.2 <- 出会い
• 2009.06: v5.3
• 2012.03: v5.4
• 2013.06: v5.5
• 2014.08: v5.6 <- 別れ
• 2015.12: v7.0
- 16. さくっと書ける話
$link = mysql_connect('localhost', 'user', 'password’);
mysql_select_db('blog_db', $link);
$result = mysql_query('SELECT title FROM post', $link);
while ($row = mysql_fetch_assoc($result)) {
echo $row['title'];
}
mysql_close($link);
- 43. inがいい話
if "hoge" in "hogefuga":
print "hoge in hogefuga"
for i in range(0, 10):
print i
<- しかも速い!