RE: [PHP] Trying to e-mail password

2002-11-12 Thread Nick Richardson
If the password is md5, then no - you can't reverse it because md5 is a one way hash. If you want to have bi-direction encryption/decryption, look into using mcrypt. - just not on windows... Because it will make you want to kill yourself. http://www.php.net/mcrypt -Original Message- From

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-12 Thread Nick Richardson
can get a current php_mcrypt.dll or how I can compile it from the php source (and don’t say google, because I've been there already), please let me know. I'm about to lose my mind!! Thanks! //Nick -Original Message----- From: Nick Richardson [mailto:esoteric.web@;gte.net] Sen

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-12 Thread Nick Richardson
stem - all the documentation (what little there is that I have found) has said that I don't need anything other than these 2 files. -Original Message- From: Ray Hunter [mailto:[EMAIL PROTECTED]] Sent: Monday, November 11, 2002 12:48 PM To: Nick Richardson Cc: [EMAIL PROTECTED] Su

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
'./php_mcrypt.dll' - The specified procedure could not be found. in Unknown on line 0 You have any idea what I might be doing wrong? //Nick -Original Message- From: .: B i g D o g :. [mailto:bigdog@;venticon.com] Sent: Monday, November 11, 2002 4:50 AM To: Nick Richardson Cc: [EMAIL

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
I will try that - Thanks for the suggestion. If it was something that simple, I'm going to shoot myself :) Thanks! //Nick -Original Message- From: .: B i g D o g :. [mailto:bigdog@;venticon.com] Sent: Monday, November 11, 2002 4:50 AM To: Nick Richardson Cc: [EMAIL PROTECTED] Su

RE: [PHP] Exec()ing two strings, using same shell?

2002-11-11 Thread Nick Richardson
Exec("dir c:\somedir") or exec("cd somedir && dir") i.e. $dirContent = ; print($dirContent); -Original Message- From: Leif K-Brooks [mailto:eurleif@;buyer-brokerage.com] Sent: Monday, November 11, 2002 11:39 AM To: [EMAIL PROTECTED] Subject: [PHP] Exec()ing two strings, using same shell

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
t... But I just can't get it to work. Everytime I try to do it I get 'call to undefined function . ' //Nick -Original Message- From: .: B i g D o g :. [mailto:bigdog@;venticon.com] Sent: Monday, November 11, 2002 4:37 AM To: Nick Richardson Cc: [EMAIL PROTECTED]; [EMAI

RE: [PHP] _POST & _GET

2002-11-11 Thread Nick Richardson
One thing to watch out for when doing this is that all browsers do not support the ?foo=blah in the action attribute of the form tag. IE and Mozilla can handle it fine, but (and what a surprise this is) Netscape will sometime have some trouble with it (mostly in older versions (4.x)). But this is

[PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
know how to register mcrypt w/ PHP and 'turn on' the mcrypt* functions. If anyone has any information or urls / how-tos it would be greatly appreciated! Thanks! //Nick Richardson // [EMAIL PROTECTED] --- Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO! Checked by

RE: [PHP] _POST & _GET

2002-11-11 Thread Nick Richardson
yes -Original Message- From: GC [mailto:gregchagnon@;hotmail.com] Sent: Monday, November 11, 2002 11:27 AM To: [EMAIL PROTECTED] Subject: [PHP] _POST & _GET Hi- Can I use both _GET and _POST in the same php file? Thanks!! -Greg -- PHP General Mailing List (http://www.php.net/) To u

[PHP] Mcrypt under Win32?

2002-11-10 Thread Nick Richardson
Anyone out there know how to get the mcrypt functions running under Win32? Any help / how-to's / URLs will be greatly appreciated. - I have searched around the web and found a few things, but nothing that really gives any good information Thanks in advance for the help!!! //Nick Richa

RE: [PHP] Calling class functions using string variables?

2002-09-22 Thread Nick Richardson
t;myClass"; $fu = "myFunc"; eval("$cl::$fu();"); -Original Message- From: Nick Richardson [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 22, 2002 12:50 PM To: 'PHP General' Subject: [PHP] Calling class functions using string variables? Hi, Anyone kno

[PHP] Calling class functions using string variables?

2002-09-22 Thread Nick Richardson
else I can think of… and they all give parse errors when the class name is a string var. (i.e. myClass::$fuName() works fine (as expected) but $clName::myFunc() does not). Everytime it doesn't work, it just gives a simple parse error. Any suggested are much appreciated! Thanks in advance

[PHP] Download Page?

2002-06-06 Thread Nick Richardson
thing like "thanks for downloading blah blah..." behind it at the same time. I would assume i would have to use header() to do this, but i dont know where i should start, a/o what headers to send. Any help would be appreciated. Thanks! //Nick Richardson ([EMAIL PROTECTED

RE: [PHP] "the document contained no data"

2002-04-11 Thread Nick Richardson
The fact that there's a seg fault involved makes me think that's it's not so much a problem w/ code, but a problem with either apache (or whatever web server you use) a/o your PHP installation - PHP may be seg faulting before it's done reading the data from the directory and apache is reporting t

RE: [PHP] Re: Variable wildcards

2002-04-11 Thread Nick Richardson
Following on the same subject (kinda) of Variable Variables... i have actually wondered this before... is there a difference between these 2 blocks?? (both should print "worldhello" if i am not mistaken, but is there a difference in how the nested variable is handled when it's inside curly braces?

[PHP] Anyone out there ever tried this?

2002-04-09 Thread Nick Richardson
ase let me know!! Thanks in advance! //Nick Richardson [EMAIL PROTECTED] [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Changing PHPSESSID= to something else?

2002-04-03 Thread Nick Richardson
in advance! //Nick Richardson [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] two different MySQL connections without always select_db?

2002-03-08 Thread Nick Richardson
i dont know if this will work, but you can try selecting them in the query... i.e.: select * from database.table I am by no means a guru on sql queries, but it may work. -Original Message- From: PHP freak [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 8:39 PM To: [EMAIL PROTECT

[PHP] Finding variable names in strings, and replacing with values?

2002-03-08 Thread Nick Richardson
e line says , i need to replace the text where the %% stuff is and set it to $bgcolor,$textcolor,or $linkcolor respectively. - I'm sure this can be done, but i'm just no good w/ the pattern matching stuff... so if anyone has any ideas on this, please let me know!!! Thanks //Nick Ri

[PHP] mcrypt? - Can't find any good info

2002-03-07 Thread Nick Richardson
I'm getting this error: Warning: mcrypt module initialization failed in /home/www/common.php on line 314 When running this code: And i can't find any documentation on what might be causing this... anyone out there know? //Nick Richardson [EMAIL PROTECTED] [EMAIL

[PHP] Auth against unshadowed /etc/passwd?

2002-03-05 Thread Nick Richardson
Anyone know how i can auth a username and password against the /etc/passwd file? Any help will be much appreciated! //Nick Richardson [EMAIL PROTECTED] [EMAIL PROTECTED] -- -- We must come to see that the end we seek, is a society

[PHP] Searching 'Help' Text

2002-02-26 Thread Nick Richardson
So i have a 'help' secion for an app i have done... and i'm lazy, so just wanted to check if anyone knows where i can get this: I want users to be able to search through the help section for specific text... anyone know of a script out there that will do this...? //Nick Ri

[PHP] Encrypt/Decrypt

2002-02-26 Thread Nick Richardson
, and move on. Later, i want to be able to retrive the encrypted string w/ the salt in it, grab the salt and use it to decrypt the password. - Is this possible and how would it be done? Thanks in advance for any suggestions. //Nick Richardson [EMAIL PROTECTED] [EMAIL PROT

[PHP] Prepending string to TOP of files?

2002-02-26 Thread Nick Richardson
Is there any way to prepend a string into the top of a file? - only docs on fopen show how to append to the end? //Nick Richardson [EMAIL PROTECTED] [EMAIL PROTECTED] -- -- We must come to see that the end we seek, is a society

[PHP] What's wrong w/ this line?

2002-02-25 Thread Nick Richardson
PHP seems to be completly ignoring this line... Funny part is that i use this same line in another place in my code and it works fine there... i have no clue - Need coffee. } elseif(!(preg_match("/^[A-Za-z0-9-]+$/",$uname))) { //Nick Richardson [EMAIL PROTECTED] [EMAIL

RE: [PHP] Variables containing HTML?

2002-02-25 Thread Nick Richardson
Right on!!! - This works great!! Can you explain what it does ;) - i'm completly lost in it ;) //Nick -Original Message- From: Demitrious S. Kelly [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 8:02 PM To: 'Nick Richardson'; 'PHP General' Sub

[PHP] Variables containing HTML?

2002-02-25 Thread Nick Richardson
he user decides they dont like the way it turned out and try to discard and change it, even after re-registering the variables in the session, they do not change to the new input. I hope someone out there can make sence of what i have said... because i think i confused even myself ;) Thanks f

RE: [PHP] Re: Hyperlinks vs Buttons

2002-02-20 Thread Nick Richardson
Actually, i have seen problems with this under Oprah and Netscape (dont ask me why... it just seems kinda flaky. So instead, use this: a href="javascript:document..submit()">Login //Nick -Original Message- From: Gary [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 7:49 PM

RE: [PHP] MSSQL 7.0 and PHP

2001-10-23 Thread Nick Richardson
my understanding (and i could be totally wrong) is varchar only accepts values up to 255 (so does char). To get larger than that you have to use 'text' (i.e. create table ( text not null..); -Original Message- From: Franco Breciano [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 2

RE: [PHP] PHP/Apache/Windows 2000 - Does not send mail

2001-10-23 Thread Nick Richardson
You need to make sure you have a few things configured on you SMTP Virtual server. Start IISAdmin and right click on 'Default SMTP Virtual Server' then choose properties. Ok, from here, things might not match perfectly because i'm running Windows XP (no i didn't pirate it, i work for microsoft).

[PHP] mysql_pconnect to remote system

2001-10-22 Thread Nick Richardson
need to connect to the database from my win box - and it's giving connection failed messages. This is what i'm doing: \n"); exit(); } ?> and every time it gives me the error. - do i need to change the script? or do i need to contact the ISP that's hosting the

RE: [PHP] Matching strings in a flat/text file?

2001-10-22 Thread Nick Richardson
0:20 PM To: [EMAIL PROTECTED]; Nick Richardson Subject: RE: [PHP] Matching strings in a flat/text file? lots of ideas nick, but can you use a database? MySQL is free and i've found its almost always better to use databases when you can... if you can't, you could do something like this: 1.

[PHP] Matching strings in a flat/text file?

2001-10-22 Thread Nick Richardson
##end ##nissan This is more content... yadda yadda ##end Any ideas on how i can do this??? //Nick Richardson [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administr