Hi,
Passwords in the mysql.users table must be encrypted using MySQL's
native PASSWORD() function, not MD5(). With newer versions of MySQL, I
think there is some change in this, but AFAIK for 4.0.18 this is still true.
When connecting to the database you always use the plaintext password,
and
"Gary Theisen" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> Hi all,
>
> I've got:
>
> WinNT
> php 4.3.1
> phpmyadmin 2.5.6
> MySQL 4.0.18-nt
>
> I can connect to my db via my php script using:
>
> [php]
> $connection = mysql_connect ("localhost", "root", "")
> [/php]
>
> That wo
Hi all,
I've got:
WinNT
php 4.3.1
phpmyadmin 2.5.6
MySQL 4.0.18-nt
I can connect to my db via my php script using:
[php]
$connection = mysql_connect ("localhost", "root", "")
[/php]
That works no problem.
This will not work however:
[php]
$somePass = md5("somePass");
$connection = m
Interesting idea. Since I'm convinced that javascript is the bastard
offspring of Bill Gates, Larry Ellison, and Baalzebub, can I sue too? :)
Hengameh wrote:
Well I am suing Java script to capture the selected item and make it the
value of my input box. But my problem is how to access this info
I'm glad you found a solution to your problem-- how big a stick did it
require?
I actually learned a LOT just reading that thread (although I'm an
Access guru who came to PHP/MySQL by way of conversion to zealotry, I've
never used PHP against an Access back-end). Many thanks to those who
cont
I'm glad you found a solution to your problem-- how big a stick did it
require?
I actually learned a LOT just reading that thread (although I'm an
Access guru who came to PHP/MySQL by way of conversion to zealotry, I've
never used PHP against an Access back-end). Many thanks to those who
cont
That *should* read :
document.fcountry.newcountry.value =
document.fcountry.country[document.fcountry.country.selectedIndex].value;
Skip the 'options' object - I'm surprised you're not getting a javascript
error, maybe you have error reporting turned off in your browser ? In any
case, always '
hello,
did you load the mysql module in your php.ini configuration file?
i.e. is the following line there:
extension=mysql.so
regards
On Thu, 13 May 2004 11:47:41 -0400
Jianping Zhu <[EMAIL PROTECTED]> wrote:
> have redhat 9.0 and Server version: Apache/2.0.40.
> i have installed rpms php-4.
have redhat 9.0 and Server version: Apache/2.0.40.
i have installed rpms php-4.2.2-17.2.i386.rpm
php-mysql-4.2.2-17.2.i386.rpm
After i create a database called mydb and serveral tables in mysql,
I tried to run following testdb.php script
--
I would start by seeing if the files are there after you create/load the
table. It should by default create a file for each table you create. Sounds
to me like a problem reading the disk.
If you don't find any answers on your own, post your system specs to the
MySQL lists. You could also try verbo
Thanks everyone for all your help.
I found some code that is using Java script and although it's not fully
functional yet I am working on it. If anyone is interested here it is:
.: Combobox :.