Created
January 16, 2012 13:07
-
-
Save niklausgerber/1620782 to your computer and use it in GitHub Desktop.
Problem with Variables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I would like to change this | |
$LOGIN_INFORMATION = array( | |
'username' => 'password' | |
); | |
into this | |
$LOGIN_INFORMATION = array( | |
$page->username() => $page->password() | |
); | |
so I can store that information in the txt file. I know that you can access the txt file over the server directory but that is not a big issue here since this is just a little protection for clients. | |
I am not that used to php yet so I am sure I was doing a rookie mistake. | |
Thanks for helping | |
Nik |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ah ok - great thanks a lot