note that you'll have to restart apache after any changes to httpd.conf/php.ini
in your case httpd.conf was changed when u installed PDO
Kranthi.
http://goo.gl/e6t3
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Resolved itself, just had to reboot. Works fine now.
Thanks anyway :)
> From: cristiano_di_bu...@hotmail.com
> To: phps...@gmail.com
> Subject: RE: [PHP-DB] Connecting to MySQL
> Date: Fri, 14 Jan 2011 21:58:33 +0100
>
>
> It o
On Fri, Jan 14, 2011 at 2:15 PM, Cristiano Di Buduo
wrote:
>
> I just downloaded both PHP and MySQL, both newest stable versions, both are
> working well, but when i try{} to :
>
> $dbh = new PDO('mysql:host=localhost;dbname=test', "user", "passwd");
>
> i catch{} a "could not find driver" er
Well you it depends on what method you use to access mysql. If for
instance if you use PDO you could do something like that to connect and
query:
$db_handler = new PDO('mysql:host='.$dbhost.';dbname='.$db, $dbuser,
$dbpass);
$query = "SELECT id, fname, lname FROM users WHERE id>'1'";
$st_h
On Thu, 3 Feb 2005 13:49, Graeme wrote:
> I like the idea of a mysqli_queasy() function. Maybe it would allow you
> to sumbit SQL statements that don't conform to any standard? ;)
>
> graeme.
>
> Bastien Koert wrote:
>
>> the second error is a misspelling in the mysqli_query command
>>
>> basti
I like the idea of a mysqli_queasy() function. Maybe it would allow you
to sumbit SQL statements that don't conform to any standard? ;)
graeme.
Bastien Koert wrote:
the second error is a misspelling in the mysqli_query command
bastien
Call to undefined function mysqli_quesry() in C:\Apache
--
E
Thank you Bastian, I found that the two variables were reversed right
when your answer came in. The book i got is horrible.
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
mysqli_select_db progblem is that the arguements are reversed, should be
$link, $dbname
the second error is a misspelling in the mysqli_query command
bastien
From: "J. Connolly" <[EMAIL PROTECTED]>
To: PHP list
Subject: [PHP-DB] Connecting To Mysql through php/mysqli
Date: Wed, 02 Feb 2005 10:39
PHP is for sure not installed correctly. I hand a similar problem when I
did the install for the first time.
It was a while agoand I don't remember clearly but I seem to remember
that it had to do with mis-configuring apache for PHP.
Honestly the best solution for all the time it would take
Ildiko Nyari wrote:
I have installed the PHP, mySQL and Apache on WIN XP, but:
1. when I want to open in the explorer: http://localhost/test.php I always get a download window, and than my Dreamweaver MX opens, and so I can't see the test.php file I created in the explorer.
You don't have PHP/Ap
web man wrote:
> How can I change the default connecting port using php script.
That depends on hwo you connect currently, try this:
http://www.php.net/manual/en/function.mysql-connect.php
Neil
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.p
Hi Alvin,
> I'm new to both PHP and mySQL but have no choice but to "crash-course" on
> both before end of mid of march to complete my University project. I would
> really appreciate alittle help from any kind soul out there.
>
> I have already created a mySQL database and create all the tables *
EMAIL PROTECTED]>
Sent: Thursday, December 13, 2001 11:46 AM
Subject: RE: [PHP-DB] Connecting to MySQL Database
> Try moving session_start to the very top of the script (above the require
> statement), and then place the session_register on the line immediately
> below session_
would be to put all the session information at the very top of the script.
- Jonathan
-Original Message-
From: Michael Elliott [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 13, 2001 8:40 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Connecting to MySQL Database
Alright here goes
Alright here goes.
This is my login function:
function login($username, $password)
// check username and password with db
// if yes, return true
// else return false
{
// connect to db
$conn = db_connect();
if (!$conn)
return 0;
// check if username is unique
$result = mysql_query("
Can you show us the code that checks the username and password to see if
they're correct?
Is this a custom admin page that you created?
If your page is authenticating against the "mysql" database, then you should
know that MySQL encrypts the password and stores the encrypted password.
So if y
At 22.06.2001 09:42, you wrote:
>How can I connect to our MySQL server remotely. Ordinarily, we upload the
>same PHP application the same machine that runs MySQL too. So, I just
>access it using "localhost" in the mysql_connect( ) function, like:
>
> mysql_connect($servername,$dbusername
What needs to be done is that you create a new user in the 'user' databese
where you replace 'localhost' with the IP number of the machine you will be
using to log in to your database and then grant the appropriate priviliges.
hope to have been of any help.
jan
Lester June Cabrera wrote:
> How
Hi,
the @localhost is to show the database server you are trying to log on and
it has nothing to do with your problem.
Please check your username and password and if you have the right
permissions.
Dobromir Velev
-Original Message-
From: Keith Whyman <[EMAIL PROTECTED]>
To: [EMAIL PROTEC
Thanks everyone for the help !
Discovered the problem !
My provider had changed the name of the host, without telling anyone !
ahhh the sort of thing that makes life fun ! :-)
> Sounds like either:
>
> 1) You don't have your correct username/password info in the mySQL/user
> table
> or
> 2) You
Keith Whyman pressed the little lettered thingies in this order...
> Can anyone help with this problem !
> user name should just be keith but the @localhost gets added and then I
> can't connect ???
>
> Warning: MySQL Connection Failed: Access denied for user: 'keith@localhost'
> (Using password
Sounds like either:
1) You don't have your correct username/password info in the mySQL/user
table
or
2) Your server is bound to an IP address or something (a frequent problem on
Win machines, but it looks like you're using Linux or something)
The localhost part isn't really the username that is
22 matches
Mail list logo