[PHP] Re: decrypting values in MYSQL

2002-08-01 Thread Aaron Ott
for future you could use mysql's encode and decode functions. serves your purpose though not as secure. http://www.mysql.com/doc/M/i/Miscellaneous_functions.html --aaron "Michael P. Carel" <[EMAIL PROTECTED]> wrote in message 001101c239c1$541db6a0$[EMAIL PROTECTED]">news:001101c239c1$541db6a0

[PHP] Re: Disabling Browser "BACK" button

2002-07-31 Thread Aaron Ott
Petre, why not use javascripts window.open something like this link to open your app http://yourapp.com','yourappname','toolbar=no'); return false;">link to your app. this would open a new window without the back and forward buttons. "Petre" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECT

[PHP] Re: ARRRRGGGGHHHH! Weird Problems!

2002-07-31 Thread Aaron Ott
tony, regarding problem one, it looks like there is a problem in the code near: for ($g = 0; $g < $num_lyrics; $g ++) { try doing: for ($g = 0; $g <= $num_lyrics; $g ++) { As for problem two, it looks like you have your color variable set in the for loop thereby resetting the color variable to

[PHP] Re: Problems with upload

2002-06-01 Thread Aaron Ott
The answer... the php.ini did not accept the value 2M. it would, however accept 2097152. Aaron "Aaron" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I am trying to upload files to a server. I have the script and it works on > other servers but when I try