Error !! Can't find data file : $data_file.
"; exit; } else { if ($max_record_in_data_file != "0") { $f = file($data_file); rsort($f); $j = count($f); if ($j > $max_record_in_data_file) { $rf = fopen($data_file,"w"); if (strtoupper($os) == "UNIX") { if (flock($rf,LOCK_EX)) { for ($i=0; $i<$max_record_in_data_file; $i++) { fwrite($rf,$f[$i]); } flock($rf,LOCK_UN); } } else { for ($i=0; $i<$max_record_in_data_file; $i++) { fwrite($rf,$f[$i]); } } fclose($rf); } } } session_start(); $newline = (strtoupper($os) == "WIN") ? "\r\n" : "\n"; switch ($do) { case "": $record = file($data_file); rsort($record); $jmlrec = count($record); ?> <?=$title?>

(:: Home ::)

'; } $w = 0; //--Color for ($i=0; $i<$max_entry_per_page; $i++) { $nomrec++; $no++; //$no--; $recno = $nomrec-1; if (isset($record[$recno])) { $row = explode("|~|",$record[$recno]); if ($w==0) { $warna = $table_content_1a; $warna2 = $table_content_1b; $w=1; } else { $warna = $table_content_2a; $warna2 = $table_content_2b; $w=0; } echo "'; echo ""; } //--end if } //--end for echo "'; ?>
Click ">here to sign the guestbook
There are no entries yet.
$no "; echo "
$row[2]
$row[3]
"; if (trim($row[4]) != "") { echo "\"$row[4]\""; } if (trim($row[6]) != "" && trim($row[6]) != "http://") { if (ereg("^http://", trim($row[6]))) echo " \"$row[6]\""; else echo " \"$row[6]\""; } echo '
'; echo "
  ".stripslashes($row[5])."
"; echo '
\"Delete
"; if ($jml_page > 1) { if ($page != 1) echo "[Top] "; else echo '[Top] '; echo 'Page # '; if ($jml_page > 10) { if ($page < 5) { $start = 1; $stop = 10; } elseif ($jml_page - $page < 5) { $start = $jml_page - 9; $stop = $jml_page; } else { $start = $page-4; $stop = $page+5; } if ($start != 1) echo '... '; for ($p=$start; $p<=$stop; $p++) { if ($p == $page) echo "$p  "; else echo "$p  "; } if ($stop != $jml_page) echo '... '; echo "of $jml_page "; } else { for ($p=1; $p<=$jml_page; $p++) { if ($p == $page) echo "$p  "; else echo "$p  "; } } if ($page != $jml_page) echo "[Bottom]"; else echo '[bottom]'; } else echo 'Page #1 of 1'; echo '

PHP Guestbook · Web Directory
<?=$title?>

Home :: View entry

*Name :
Email :
Website :
*Comment :

* Required field
Verification Code :
Please retype this code below :
'">
70) $vname = substr($vname,0,70); if (strlen($vemail) > 100) $vemail = substr($vemail,0,100); if (strlen($vurl) > 150) $vurl = substr($vurl,0,150); $_SESSION['name'] = $vname; $_SESSION['email'] = $vemail; $_SESSION['url'] = $vurl; $_SESSION['comment'] = stripslashes($vcomment); if ($vname == "" || $vcomment == "") { input_err("You may left some fields."); } if ($vemail != "" && !preg_match("/([\w\.\-]+)(\@[\w\.\-]+)(\.[a-z]{2,4})+/i", $vemail)) { input_err("Invalid email address."); } if ($vurl != "" && strtolower($vurl) != "http://") { if (!preg_match ("#^http://[_a-z0-9-]+\\.[_a-z0-9-]+#i", $vurl)) { input_err("Invalid URL format."); } } $test_comment = preg_split("/[\s]+/",$vcomment); $jmltest = count($test_comment); for ($t=0; $t<$jmltest; $t++) { if (strlen(trim($test_comment[$t])) > 70) { input_err("Invalid word found on your entry : ".stripslashes($test_comment[$t])); } } if (isset($_SESSION['add']) && $_SESSION['add'] >= $max_entry_per_session) { input_err("Sorry, only $max_entry_per_session message(s) allowed per session.",false); } elseif (!isset($_SESSION['add'])) { exit; } if ($vsecc != $_SESSION['secc'] && strtoupper($imgcode) == "YES") { input_err("Invalid verification code"); } //--only 2000 characters allowed for comment, change this value if necessary $maxchar = 2000; if (strlen($vcomment) > $maxchar) $vcomment = substr($vcomment,0,$maxchar)."..."; $idx = date("YmdHis"); $tgl = date("F d, Y - h:i A"); $vname = str_replace("<","<",$vname); $vname = str_replace(">",">",$vname); $vname = str_replace("~","-",$vname); $vname = str_replace("\"",""",$vname); $vcomment = str_replace("<","<",$vcomment); $vcomment = str_replace(">",">",$vcomment); $vcomment = str_replace("|","",$vcomment); $vcomment = str_replace("\"",""",$vcomment); $vurl = str_replace("<","",$vurl); $vurl = str_replace(">","",$vurl); $vurl = str_replace("|","",$vurl); $vemail = str_replace("<","",$vemail); $vemail = str_replace(">","",$vemail); $vemail = str_replace("|","",$vemail); if (strtoupper($os) == "WIN") { $vcomment = str_replace($newline,"
",$vcomment); $vcomment = str_replace("\r","",$vcomment); $vcomment = str_replace("\n","",$vcomment); } else { $vcomment = str_replace($newline,"
",$vcomment); $vcomment = str_replace("\r","",$vcomment); } if (isset($_SERVER['HTTP_X_FORWARDED_FOR']) && eregi("^[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}$",$_SERVER['HTTP_X_FORWARDED_FOR'])) { $ipnum = $_SERVER['HTTP_X_FORWARDED_FOR']; } else { $ipnum = getenv("REMOTE_ADDR"); } $newdata = "|~|$idx|~|$tgl|~|$vname|~|$vemail|~|$vcomment|~|$vurl|~|$ipnum|~|"; $newdata = stripslashes($newdata); $newdata .= $newline; if (!is_spam($newdata)) { $tambah = fopen($data_file,"a"); if (strtoupper($os)=="UNIX") { if (flock($tambah,LOCK_EX)) { fwrite($tambah,$newdata); flock($tambah,LOCK_UN); } } else { fwrite($tambah,$newdata); } fclose($tambah); //--send mail if (strtoupper($notify) == "YES") { $msgtitle = "Someone signed your guestbook"; $vcomment = str_replace(""","\"",$vcomment); $vcomment = stripslashes($vcomment); $vcomment = str_replace("
","\n",$vcomment); $msgcontent = "Local time : $tgl\n\nThe addition from $vname :\n----------------------------\n\n$vcomment\n\n-----End Message-----"; @mail($admin_email,$msgtitle,$msgcontent,"From: $vemail\n"); } //--clear session $_SESSION['name'] = ""; $_SESSION['email'] = ""; $_SESSION['url'] = "http://"; $_SESSION['comment'] = ""; $_SESSION['add']++; $_SESSION['secc'] = ""; redir($self,"Thank you, your entry has been added."); } else { redir($self,"Sorry, your entry can't be added into the guestbook."); } break; case "del": $record = file($data_file); $jmlrec = count($record); for ($i=0; $i<$jmlrec; $i++) { $row = explode("|~|",$record[$i]); if ($id == $row[1]) { ?> Delete record
Delete Confirmation


-



IP :
Admin password :

» Delete all records that using this IP :

'">

Please wait...
Error !


Click here and try again.
Looking to do some online shopping.Click above for high-res gallery of 2009 suzuki.The Site for all new 2009 chevy dealers.Groups Books Scholar google finance.Blue sky above, racetrack beneath. The convertible bmw.We search the world over for health products.Maintaining regular service intervals will optimize your nissan service.Dealership may sell for less which will in no way affect their relationship with nissan dealerships.Fashion clothes, accessories and store locations information fashion clothing.Choose from a wide array of cars, trucks, crossovers and chevy suvs.Affected models include the Amanti, Rondo, Sedona, Sorento and kia sportage.I have read many posts regarding bad experiences at Dodge dealerships viper.What Car? car review for Honda Jazz hatchback.And if you're a pregnant mom.Reporting on all the latest cool gadget.Chrysler Dodge Jeep sprinter dealership.Read about the 10 best cheap jeeps.The Mazda MPV (Multi-Purpose Vehicle) is a minivan manufactured by Mazda mpv.Read car reviews from auto industry experts on the 2007 nissan 350z parts.Choose from a wide array of cars, trucks, crossovers and chevy suv.Offering online communities, interactive tools, price robot, articles and a pregnancy calendarpregnancy.The state-of-the-art multi-featured suzuki gsxr.News results for used cars.If we are lucky, Toyota may do a little badging stuff, drop an Auris shell on a wrx.Toyota Career Opportunities. Join a company that feels more like a family. Take a look at the toyota jobs.The website of Kia Canada - Le site web officiel de kia dealers

harmony stratotone h44 guitar

Abbe Sensei

download usbhostfs

popular destination

peta wilson playboy pics

look around

recipe sponge toffee

commercial dog

foreskin docking stories

natural health

italian football seria b

web sites

oak furniture liquidators visalia

Italian migrants

glaux h download

which makes

leica f5 cameras uk

Success Secrets

kim dewoody

game reserves

bobcat bait or lure recipes

going through

poliza de cheque

new car

goodlife recipe petcare co

good idea

recipe for hamburger

would take

recipes rum balls

wide range

iris rounsaville

Waterloo Boy

carmel corn puff corn recipe

car enthusiasts

galeria foto chica desnuda

electrical parts

rockey trading co

Aboriginal art

dollarama locations in winnipeg mb

said yes

brazzar drawings

VOIP Broad

nvidia geforce p260

computer games

pickle pot salem ma

of the group of people

part c6463a

fire risk

dnc after miscarriage

slowly moved

hot preteen

In point of fact

quick easy fun milkshake recipes

Dad now

axl rose erin everly

visit past soft

yahoo ciom

Australia since

cp pthc toplist

United States

http sg4ge

and cartoons today

starlogic monitors drivers

female hair

leonta young

Westminster Adoption

printable bb gun targets

The science of medicine

acirema story

wide variety

rush limbar

would like

old x rated hairy pussy

heavy duty

jim hughes realty iowa

tree cross farm

att rewards center

seek to satisfy

alyssa alps galleries

Alice Springs

hanazakari no kimitachi e download

Apple iTune

ospf advantages and disadvantages

seem to have been

wildflower century creston

brought back

sexiest julia bradbury

wave drop

logan s roadhouse yeast rolls recipe

sexual harassment

jimmy vickers jeep

should look

ana scoreland

eight village meet

adult world quakertown pa

good place

riviera pastry shop

the writer's name

janet berg israel jewelry

should always

sammy braddy

started pumping

italian exam prego

in the world

loreal advert

infected

vestidos formatura

Great Britain

fuching machine

evangelical Christians

prayers for lunch

get rid

j squad music

video games

picture atoms of calcium

local Italian

aspca in fresno ca

began idea

burke litwin model of change

decide which

lepanto tiles design

domain name

dry vigina

affiliate program

vista wireless settings

Darwinian ideas

smoked pork picnic shoulder roast recipes

good place

bo newell poster

Britney Spears

north end deli plainville ma

freely reprinted

alexandra fleming

social anxiety

strawberry hill theatre surrey

But the facts

restaurando mi casa

designer prom

preclancia

dog training

popular food from the 1990s

sat back

sanibel naturist

Australian job

code po172

about many

richards realm gallerys

cock off

models in rocawear

if in the long

http narutohentai

great deal

poor man turtles recipe

martial arts

recipes for le creuset

Saddam Hussein

divine praises matt maher

started sucking

volumen plaquetario medio

couldnt wait

riverwalk crossing in jenks

fire pit

recipe clodhoppers

intentional communities

penthhouse magazine

law and hence

ponderosa furniture trinity alabama

national parks

spantaneeus xtasy 551 pictures

gift ideas

collie budz come around lyrics

New York

moist dark fruit cake recipes

hosting services

wing stop fry recipes

sound deadeners

sonora phonograph

up use

carolyn showell ministry

dessert indulge

moe s southwest grill queso recipe

feel good

true sine wave inverter schematic circuit

In addition

larkin wellheads

Peirce thought the idea

obeah spells

doing exactly

rubix cube solver software

East Timor

uk fun pyjamas all in one

online gambling

dinner dash 2 free cheat codes

general population

cooking rice by absorption method

the mood of the music

town and country estate agents stourbridge

once again