Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
38 views

Continuing php trouble with database connection in a mysql_select_db and xampp

I've tried changing the database name to different things, but then i just get "no databse selected." haven't found anything in the xampp readmes to help. Thanks for your help! error message: Table ...
0
votes
2answers
54 views

Unable to select database(remote)

every time I try to connect to database, I get this message database select error .Access denied for user '<username>'@'localhost' to database '<database>' . My site is hosted remotely . ...
0
votes
3answers
85 views

PHP mysql_db_query being deprecated. Can't fix it

I'm getting the following error while connecting to my SQL database: function mysql_query($query) { $dbhost = "localhost"; $dbuser = "p39438_***"; $dbpass = "password"; $dbname = "p31417_***"; $conn ...
0
votes
2answers
218 views

CMS made simple: using mysql_select_db($dbname); messes up everything

hi im fairly new to cms made simple and ive stumbled upon a problem thats beyond me, my coad is <?php $dbh = 'localhost'; $dbu = 'root'; $dbp = ''; $connect = mysql_connect($dbh, $dbu, $dbp) or ...
0
votes
4answers
144 views

PHP - Two MySQL connections, only second one works

I've looked every where, probably googled every variation of my question I could come up with and I've tried all of the suggestions... I'm trying to connect to two different DBs in two different ...
0
votes
2answers
581 views

Can you reuse a mysql result set in PHP?

I have a result set I pull from a large database: $result = mysql_query($sql); I loop through this recordset once to pull specific bits of data and get averages using while($row = ...
0
votes
2answers
145 views

need help with mysql connection in php

I have a problem with mysql connection. I have a php script which upload photo, this script do that: 1) mysql connection 2) check user rights for uploading photo (I use a sql query for this) 3) ...
0
votes
3answers
466 views

php mysql_select_db returns blank page

I'm just starting out writing this code and when I add in the db select and refresh the page, instead of showing all the other html on the page or an error, it just shows up blank. Here's what I've ...
0
votes
2answers
681 views

How quick is switching DBs with PHP + MySQL?

I'm wondering how slow it's going to be switching between 2 databases on every call of every page of a site. The site has many different databases for different clients, along with a "global" database ...