Skip to content

Instantly share code, notes, and snippets.

View soycms's full-sized avatar

soycms soycms

  • 株式会社日本情報化農業研究所 (Nippon Institute of Agroinformatics Ltd.)
View GitHub Profile
@soycms
soycms / entry_search_form
Created October 23, 2013 03:06
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>
@soycms
soycms / entry_search.php
Last active December 26, 2015 06:59
SOY CMS開発ブログの検索フォーム絞り込み用スクリプト。カスタムフィールドアドバンスドでの項目で絞り込む。
<?php
/**
* 質問 検索結果
*/
function entry_search(){
//検索したい文字列が入る。
$query = @$_GET["q"];
//ブログに使われているラベルIDを取得する。