From New Products from Budo Shop Store by New Products from Budo Shop Store
Read MoreCategory: Contributors
Happy New Year-2009 Trailer | Henka
From blogurl:henka.wordpress.com inpostauthor:ariesbudo - Google Blog Search by ariesbudo
The 2008 training year has come to a close and I was fortunate enough to be a part of the last training of the year at Hombu and spend some time with Soke afterwards where several of the up and coming 2009 topics were discussed. ...… Read MoreBujinkan Seminar List (v2.0 beta)
From Kabutoshimen by admin
I’ve been working on a new seminar list. I totally rewrote all code to php, it is much faster than the old one. There is a few things I need to figure out before I remove the “beta tag”, but it is already very usable (open the page and look at the page source for options).
Here is the link for preview http://kesshi.com/seminars/bujinkan.php
This weekend I’m at a seminar, then I take a week off over the holiday, then new year and off to Japan. So I don’t know when and how much time I have to work on it.
If you have any ideas, please let me know, add a comment here or contact me!
Merry christmas and happy new year!…
Read MoreKoppo « Shugyo 修行
From blogurl:tazziedevil.wordpress.com - Google Blog Search by Duncan Stewart
togakushi_embu_016. How to approach training nowadays is plagued with doubt by many throughout the world. Everyone has there own thoughts on budo and personal reasons for becoming involved in the training. However, there are things that ...… Read MoreBug fix on the seminar apps
From Kabutoshimen by admin
Every December the Next month seminars would show the whole past year. It was a scripting bug that I have fixed now. Since it is december next month it should default to January and forwards, but there is also a tab with Next years seminars so instead I added a message that it is the end of this year and look at next year for future seminars.
Here is the PHP code if you want include it on your web site.
<?php
$nextmonth = mktime(0, 0, 0, date(“m”)+1);
$monta = date(“m”, $nextmonth);
if ( $monta == “01″ )
{ $yerra = date(“Y”)+1 ;
echo “<p>It is probably December now, click on Seminars next year</p>”;
}
else
{ $yerra = date(“Y”) ;
$ch = curl_init(“http://www.kesshi.com/cgi-bin/SEMINARS-ME2.cgi?$yerra-$monta”);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
}
?>
If you want more examples how to display seminars from the database on your web site, please don’t hesitate to contact me.
I really do encourage all web masters to use any code they want (mine or modified) to display seminars from the seminar database.