![]() | ![]() | |
04/09/06 |
![]() ![]() ![]() ![]() ![]()
| WELCOME TO ROOM 311 Please note that my URL has changed. It is now http://www.pribe.net/pribe311/index.htm. Please update your favorites (bookmarks.) THE 411 IN 311 Here is some general information that needs to be given out! Friday, information was sent out regarding our end of the year party. The letter sent home was a little hard to understand. Here are some clarifications.
FAQ
No, in an attempt to keep in simple, we have one menu (see above) for each person. If an adult would like to buy two menus and share the three items with their child that would be fine.
Since this picnic is our end of the year party and Sunburst is helping us out, we would like everyone to buy hotdogs. If there is a special circumstance please let me know. You are also able to pick your child up early that day if you would prefer.
We have contracted with Sunburst to provide this food for us, please be understanding that we can not provide for everyone's tastes. Please take that into consideration when sending in your family lunch count.
If you would like to provide a desert for the party you can indicate that in the first blank. If you plan to attend the party and eat a hotdog with your child please let us know how many menus (hotdog, chips and a drink) you would like so we can make sure Sunburst provides enough. Please sign your name and also indicate your child's name if different from your own.
Yes, please be aware that we will be outside in the grass and make provisions for your younger children. Also if these children will be eating add them into your count when you send the information to school. As a personal request, (it will help my book keeping) if you could send the money in with your menu count. That way we will not have to keep up with how many extra people you wanted to attend the party and how much you owe. You will not have to remember either! If this is impossible I understand.
I hope this helps clarify things a little. As always feel free to contact me at school if you have any questions.
| |
This site was last updated 04/09/06
// hit'em counter // (c) tom erickson (like i can even do anything if you steal it) // verylost.f2o.org // lost@verylost.f2o.org $countertype = "text"; // put "text" or "image", choose which counter style you want $imagetype = ".gif"; // if using "image" above, put in the extension with the '.' of the img files. ie: ".gif",".jpg",".png" $numofdigits = 1; // number of digits to show, if number of digits in hits is less than this, tack as many '0's on the front as needed error_reporting(0); // because of some stupid e_notice if (!file_exists('counter.txt')) { $fp = fopen('counter.txt','w'); fwrite($fp,'0'); } $fp = fopen('counter.txt','r'); $counta = fgets($fp); $host = $HTTP_SERVER_VARS["HTTP_HOST"]; if(!strstr($HTTP_SERVER_VARS['HTTP_REFERER'], $host)) { $counta++; $fp = fopen('counter.txt','w'); fwrite($fp,$counta); } $digits = array(); $digitlen = strlen($counta); // this fills in the 0's before the number of hits, according to $numofdigits $zerostofill = $numofdigits - $digitlen; if ($zerostofill > 0) { $countc = 1; while ($countc <= $zerostofill) { $countd .= 0; $countc++; } $countc = $countd.$counta; } else $countc = $counta; if ($countertype != "image") echo $countc; //checks if the counter type is set to image, otherwise just print out the num of hits else { $countb = 0; // and this finds the number of digits, and assigns each digit to part of an array, then gets the corresponding array[num], and prints it while ($countb < strlen($countc)){ $digits[$countb] = substr($countc,$countb,'1'); $countb++; } $countb = 0; while ($countb < strlen($countc)) { echo '