kviki_kiki has asked for the wisdom of the Perl Monks concerning the following question:
Hello there,
you were very kind the first time I posted a question, so I hope someone will know the answer to my problem
.I have a perl script that needs to make a php page. I am making a php page because I need it to be password protected. The thing is, each time there is a $ character, perl does not write it into the php file, nor the name associate with it. For example:
$LOGIN_INFORMATION = array('guest' => '1234');it looks like this in php:
= array('guest' => '1234');
Could you please tell me how to solve this?
Thank you!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: "Translating" $
by choroba (Cardinal) on Oct 01, 2015 at 12:42 UTC | |
by Anonymous Monk on Oct 02, 2015 at 06:30 UTC | |
|
Re: "Translating" $
by GotToBTru (Prior) on Oct 01, 2015 at 12:45 UTC | |
|
Re: "Translating" $
by hippo (Archbishop) on Oct 01, 2015 at 14:38 UTC | |
|
Re: "Translating" $
by Corion (Patriarch) on Oct 01, 2015 at 12:41 UTC |