Skip to content

Instantly share code, notes, and snippets.

@soycms
Created October 23, 2013 03:06
Show Gist options
  • Save soycms/7112010 to your computer and use it in GitHub Desktop.
Save soycms/7112010 to your computer and use it in GitHub Desktop.
SOY CMS開発ブログに設置した、ブログ検索のフォームHTML。 PHPで制御している。
<form method="GET" action="/blog/search">
<input type="text" name="q" id="textfield" value="<?php echo htmlspecialchars($_GET["q"],ENT_QUOTES); ?>" /><br />
<input type="radio" id="blog_category_cms" name="category" value="blog_category_cms" <?php if(@$_GET["category"] == "blog_category_cms"){ echo 'checked="checked"'; } ?> /><label for="blog_category_cms">SOY CMSの記事のみを検索</label><br />
<input type="radio" id="blog_category_shop" name="category" value="blog_category_shop" <?php if(@$_GET["category"] == "blog_category_shop"){ echo 'checked="checked"'; } ?> /><label for="blog_category_shop">SOY Shopの記事のみを検索</label><br />
<input type="submit" name="button" id="button" class="search_button" value="検索" />
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment