Help for this page

Select Code to Download


  1. or download this
    $text =$data{"Text"}; #Name of Textbox in form
    $text =~ s/</&lt;/g;
    $text =~ s/>/&gt;/g;
    
  2. or download this
    if(-f "$bookfile"){
      undef $/;
      open(FILE, "+<$bookfile") 
    ...
      else{binmode(FILE);}
         $bookfile_contents = <FILE>;
      $/ = "tr/\n /";