Skip to content

Instantly share code, notes, and snippets.

@katryo
Created August 12, 2012 03:12
Show Gist options
  • Save katryo/3329334 to your computer and use it in GitHub Desktop.
Save katryo/3329334 to your computer and use it in GitHub Desktop.
PHP練習2
<html>
<head>
<title>test.php</title>
<meta charset="UTF-8">
</head>
<body>
<form action="" method="GET">
<input type="text" name="name">
<input type="submit">
</form>
<?php
$name = $_GET['name'];
echo("Let's\(・ω・)/$name");
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment