in reply to Re: Re: HTML embedded in perl
in thread HTML embedded in perl

Sorry, but you are incorrect. qq IS what you use to double quote text and have variables interpolated. q will single quote and not interpolate.

#!/usr/bin/perl -w

use strict;
my $text = "INSERTED TEXT";
print qq! There is tome $text here \n!; # THIS INTERPOLATES
print q! There is some $text here \n!; # THIS DOESN'T