Link to home
Start Free TrialLog in
Avatar of samba4
samba4

asked on

Perl Newbie Print question

This should be really easy but I am not familiar with perl and I need to get this fixed.

I need to know how to format the Print command to output

include("ensim_config.php");

This is what I have tried in various ways but can't get it to work
print CF "\include("ensim_config.php");

ASKER CERTIFIED SOLUTION
Avatar of sunnycoder
sunnycoder
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
print "include \("ensim_config.php"\);"
Avatar of rqs
rqs

print "include(\"ensim_config.php\")\;";  
print "include(\"ensim_config.php\");";