in reply to pushing
@gb = <GB>; #where GB is a guestbook html file
@gb2 = ("jsdjsjsj");
foreach $line(@gb){
push(@gb2,$line);
if($line =~ /INSERT_NEW_ENTRY/){
push(@gb2,"<b>entry</b> $FORM{'whatever'}");
}
}
seek(GB,0,0);
truncate(GB,0);
print GB @gb2;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: pushing
by pawel_guz (Novice) on Dec 30, 2000 at 18:44 UTC | |
by davorg (Chancellor) on Dec 30, 2000 at 18:48 UTC | |
by dws (Chancellor) on Dec 31, 2000 at 11:22 UTC |