Hatena::Groupskcomputerclub

PHP入門

PHP入門

プレゼンテーション

PHP入門

  • last Update:20101115

What's PHP language

  • Script Language
  • it is used on a lot of web service
  • it is easy to write
  • Newest Version is 5.3.3
    • But on School server, runnning PHP is 4.3.9

What's to need

  • PHP
  • web server (if you want to run on web

recommend XAMPP

Download

meaning of name

Hello,World

<?php
echo"hello";
?>
<?php
print"hello";
?>

php syntax

  • code start with
<?php
  • end with
?>
  • you must write code between this symbol

php with html

  • you can write like this
<?php
$title="welcome page!";
?>
<h1>
<?php
echo$title;
?>
</h1>
?>

and more

  • i will write more info if i can in the future....