Re: [PHP] Hmmm

2005-02-27 Thread John Nichel
Jason Bennett wrote: Oooo.. good one. I used the RPM install for MySQL.. can you point me in the right direction for doing this? Thanks!! J. Google is your friend... http://www.google.com/search?q=mysql+4.1+accept+old+password -- By-Tor.com ...it's all about the Rush http://www.by-tor.com -- PHP G

RE: [PHP] Hmmm

2005-02-27 Thread Jason Bennett
Oooo.. good one. I used the RPM install for MySQL.. can you point me in the right direction for doing this? Thanks!! J. -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Sunday, February 27, 2005 9:40 PM To: php-general@lists.php.net Subject: Re: [PHP] Hmmm Jason

Re: [PHP] Hmmm

2005-02-27 Thread John Nichel
Jason Bennett wrote: I just installed a new MYSQL version 4.1 (from 4.0) and now none of my PHP scripts work anymore. They are all complaining about attempting to login as root. I'm going to guess that you didn't setup MySQL 4.1 to accept 'old-style' passwords. -- By-Tor.com ...it's all about t

Re: [PHP] Hmmm, and how to do THAT ? ;)

2003-03-19 Thread Philarmon
Hmmm, the PHP script is not a webpage but just a script which is called from a flash movie, so i guess i cant check cookies with that :( But thanks anyway ! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Hmmm, and how to do THAT ? ;)

2003-03-19 Thread Abdul-wahid Paterson
Hi, On Wed, 2003-03-19 at 22:28, Philarmon wrote: > > All security measures needs to happen on the server, not from what the > users > > web browser gives you. > > And how to do something like that on the server ? Is there a tutorial > somewhere about this or something ? A few words about that w

Re: [PHP] Hmmm, and how to do THAT ? ;)

2003-03-19 Thread Joshua Moore-Oliva
Nono, I'm saying that you can never be 100% sure where someone came from, since they are responsible for storing that data, and they can modify before sending it back to you. If you really want to make sure someone came from another page before the current page, create a uniq ID and md5 it or s

RE: [PHP] Hmmm?

2001-08-01 Thread Lawrence . Sheed
I presume you mean code layout Its there to make code easier to read. eg some silly code for ($x=1;$x<100;$x++) { while ($i<50) { print $i; } } This is more legible than for ($x=1;$x<100;$x++) { while ($i<50) { print $i; } } Indentation makes it easier to spot

Re: [PHP] Hmmm... What's problems?

2001-03-15 Thread Yasuo Ohgaki
- Original Message - From: ""Al"" <[EMAIL PROTECTED]> Newsgroups: php.general Sent: Friday, March 16, 2001 3:09 PM Subject: [PHP] Hmmm... What's problems? > I'm using manual online on php.net and use example of File uploader. > If i changed TEXT file All right! > If i changed Binary fil

Re: [PHP] Hmmm... What's problems?

2001-03-15 Thread Rick St Jean
Make sure that enctype="multipart/form-data" is in your form. At 05:29 PM 3/15/01 +0300, you wrote: >I'm using manual online on php.net and use example of File uploader. >If i changed TEXT file All right! >If i changed Binary file php script answer Error! >in sources code PHP using Binary