Nov 22, 2009

Php Myadmin - can't access mysql database

free web hosting
Open Discussion > MODERATED AREA > Computers > Database

Php Myadmin - can't access mysql database

EinReaper
I have installed XAMPP on my computer.
Everything works fine, but when I enter PHPMyAdmin I get this warning: "Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole."
So I've changed the password to the root account, but then I couldn't access the mysql databases anymore with PHPMyAdmin (I received an error that the access was denied). I could change the structures only in php with the mysql_connect command.
Then I had to reset the root password and now I'm back at square 1.
So my question is this: how can I change the root password and still be able to access the mysql database with PHPMyAdmin?

Comment/Reply (w/o sign-up)

jlhaslip
Try accessing the Security page in the default localhost directory: xampp by accessing http:localhost/ in your Browser.
The basic installation has a Security link that may have some information.

Comment/Reply (w/o sign-up)

rvalkass
By the sound of it, phpMyAdmin is remembering your root password (or rather, remembering there isn't one). If you are storing the password in the configuration file then you will need to open that configuration file, look for the line where the password is stored, and change it to match whatever you've changed it to with MySQL.

Comment/Reply (w/o sign-up)

pasten
QUOTE(rvalkass @ Oct 22 2008, 05:48 PM) *
By the sound of it, phpMyAdmin is remembering your root password (or rather, remembering there isn't one). If you are storing the password in the configuration file then you will need to open that configuration file, look for the line where the password is stored, and change it to match whatever you've changed it to with MySQL.

Yes, open the config file, and change the password. I too had the same problem. XAMPP does store password in config file. That is XAMPP has changed the default mechanism of phpMyAdmin. I think so. Another thing is that XAMPP installation creates 3 php config files. So don't be frustrated if you change some setting and don't get the expected result. Just find the one which does the work. I did it through trial and error.

Comment/Reply (w/o sign-up)

pyost
On the other hand, if you are using XAMPP only for local testing, without anyone "from the outside" accessing your computer, having a secure phpMyAdmin account isn't really that necessary. But if one of the solutions posted above does work - stick to it. Better safe that sorry smile.gif

Comment/Reply (w/o sign-up)

EinReaper
^ At some point I do plan to move my work on the www so I had to resolve this security measure.
Thanks for all your replies. It turns out that I did, in fact, had to edit the configuration file.

If anyone else has this problem: the configuration file is C:\xampp\PhpMyAdmin\config.inc.php and you need to add the password to this line: $cfg['Servers'][$i]['password'] = '';
Instead of C:\xampp you should choose the directory where you have installed xampp; I'm not sure, but this should work for EasyPhp as well.

Comment/Reply (w/o sign-up)

shadowx
Glad to see you've solved the issue, i have a little info that might help understand why you get the error message and why it doesnt always matter!

Basically as said PMA (PhpMyAdmin) notices that you have a root account with FULL privileges and NO password. meaning if your server was online any attacker could very easily delete your databases, edit them etc.... because there is no password and the account has full privileges.

For testing on a local server i wouldnt worry too much, just make sure you use a good firewall (you should anyway really!) to stop people gaining access to your DBs or your system.

if you want to use another account on PMA just go to privileges (on the main page) and "add new user" from there just type in the new username and password. You can also then select the privileges of that user. For example you might have a PHP script where you want to ONLY select data from a DB (perhaps for a login or something) so you can have a restricted user that only has SELECT privileges, so even if an attacker used SQL injections they would never be able to delete or edit your databases because that user cannot do anything except read the databases.

I dont know if that made sense or not but i hope it did! It also helps to create users that are the same as the ones on your real host so that when error-checking or editing scripts you dont have to worry about changing the username/password in the script

 

 

 


Comment/Reply (w/o sign-up)

(G)aufweb02
php and myadmin connection problems
Php Myadmin

I'm having a problem in my connections when I access my database..I don't know whats wrong with my script Heres the script: 0) { $sql = "SELECT user_name FROM customer WHERE user_name='$_POST[fusername]' AND password=md5('$_POST[fpassword]')"; $result2 = mysqli_query($cxn,$sql) or die("Query died: fpassword"); $num2 = mysqli_num_rows($result2); if($num2 > 0) //password matches { $_SESSION['auth']="yes"; $_SESSION['logname'] = $_POST['fusername']; header("Location: secretpage.Php"); } else //pass does not match { $message_1="The Login Name, '$_POST[fusername]' exists, but you have not entered the correct password! PLEASE TRY AGAIN."; $fusername = strip_tags(trim($_POST[fusername])); include("form_login_reg.Inc"); } } elseif($num == 0) { $message_1 = "The UserName you entered does not exist! PLEASE TRY AGAIN!"; include("form_login_reg.Inc"); } Break; Case "Register": /*check for blanks */ foreach($_POST as $field => $value) { if ($field != "fax") { if ($value == "") { $blanks[] = $field; } else { $good_data[$field] = strip_tags(trim($value)); } } } If (isset($blanks)) { $message_2 = "The following fields are blank. Please ENTER the required Information: "; foreach($blanks as $value) { $message_2 .="$value, "; } extract($good_data); include("form_login_reg.Inc"); exit(); } /*validate data */ Foreach($_POST as $field => $value) { if(!empty($value)) { if(preg_match("/name/I",$field) and !preg_match("/user/I",$field) and !preg_match("/log/I",$field)) { if (!preg_match("/^[A-Za-z' -]{1,50}$/",$value)) { $errors[] = "$value is not a valid name. "; } } if(preg_match("/street/I",$field) or preg_match("/addr/I",$field) or preg_match("/city/I",$field)) { if(!preg_match("/^[A-Za-z0-9.,' -]{1,50}$/",$value)) { $errors[] = "$value is not a valid address or city. "; } } if(preg_match("/state/I",$field)) { if(!preg_match("/^[A-Z][A-Z]$/",$value)) { $errors[] = "$value is not a valid state code."; } } if(preg_match("/email/I",$field)) { if(!preg_match("/^._@.+\\..+$/",$value)) { $errors[] = "$value is not a valid email address."; } } if(preg_match("/zip/I",$field)) { if(!preg_match("/^[0-9]{5,5}(\-[0-9]{4,4})?$/",$value)) { $errors[] = "$value is not a valid zipcode."; } } if(preg_match("/phone/I",$field) or preg_match("/fax/I",$field)) { if(!preg_match("/^[0-9)(xX -]{7,20}$/",$value)) { $errors[] = "$value is not a valid phone number. "; } } } } Foreach($_POST as $field => $value) { $$field = strip_tags(trim($value)); } If(@is_array($errors)) { $message_2 = ""; foreach($errors as $value) { $message_2 .= $value. "PLEASE TRY AGAIN
"; } include("form_login_reg.Inc"); exit(); } /*check if username already exists */ Include("dbstuff.Inc"); $cxn = mysqli_connect($host,$user,$password,$database) or die("Couldnt connect to server"); $sql = "SELECT user_name FROM customer WHERE user_name='$user_name'"; $result = mysqli_query($cxn,$sql) or die("Query died: user_name."); $num = mysqli_num_rows($result); If($num > 0) { $message_2 = "$user_name already used. Select another username."; include("form_login_reg.Inc"); exit(); } Else { $today = date("Y-m-d"); $sql = "INSERT INTO customer (user_name, create_date, password,first_name,last_name,street,city,zip,phone,fax,email) VALUES ('$user_name','$today',md5('$password'),'$first_name', '$last_name', '$street', '$city','$state','$zip', '$phone','$fax','$email')"; mysqli_query($cxn,$sql); $_SESSION['auth']="yes"; $_SESSION['logname'] = $user_name; /*SEND EMAIL TO NEW CUSTOMER*/ $emess = "You have successfully registered. "; $emess .= "Your new username and password are: "; $emess .= "\and\and\t$user_name\and\t"; $emess .= "$password\and\and "; $subj = "Your new customer registration"; $mailsend=mail("$email","$subj","$emess"); header("Location: secretpage.Php"); } Break; Default: include("form_login_reg.Inc"); } ?> MY INCLUDE FILE FOR THE DATABSE ACCESS I've doubled checked everything from fields and databse connections and bothing seems wrong, the error I'm getting is somwthing like this. Could not connect: access denied for user 'admin'@'localhost' (using password: YES) Something like that.. Thnx..C: -question by aufweb02
Keywords: access denied at database on .php myadmin

Comment/Reply (w/o sign-up)

(G)aufweb02
php and myadmin connection problems
Php Myadmin

I'm having a problem in my connections when I access my database..I don't know whats wrong with my script Heres the script: 0) { $sql = "SELECT user_name FROM customer WHERE user_name='$_POST[fusername]' AND password=md5('$_POST[fpassword]')"; $result2 = mysqli_query($cxn,$sql) or die("Query died: fpassword"); $num2 = mysqli_num_rows($result2); if($num2 > 0) //password matches { $_SESSION['auth']="yes"; $_SESSION['logname'] = $_POST['fusername']; header("Location: secretpage.Php"); } else //pass does not match { $message_1="The Login Name, '$_POST[fusername]' exists, but you have not entered the correct password! PLEASE TRY AGAIN."; $fusername = strip_tags(trim($_POST[fusername])); include("form_login_reg.Inc"); } } elseif($num == 0) { $message_1 = "The UserName you entered does not exist! PLEASE TRY AGAIN!"; include("form_login_reg.Inc"); } Break; Case "Register": /*check for blanks */ foreach($_POST as $field => $value) { if ($field != "fax") { if ($value == "") { $blanks[] = $field; } else { $good_data[$field] = strip_tags(trim($value)); } } } If (isset($blanks)) { $message_2 = "The following fields are blank. Please ENTER the required Information: "; foreach($blanks as $value) { $message_2 .="$value, "; } extract($good_data); include("form_login_reg.Inc"); exit(); } /*validate data */ Foreach($_POST as $field => $value) { if(!empty($value)) { if(preg_match("/name/I",$field) and !preg_match("/user/I",$field) and !preg_match("/log/I",$field)) { if (!preg_match("/^[A-Za-z' -]{1,50}$/",$value)) { $errors[] = "$value is not a valid name. "; } } if(preg_match("/street/I",$field) or preg_match("/addr/I",$field) or preg_match("/city/I",$field)) { if(!preg_match("/^[A-Za-z0-9.,' -]{1,50}$/",$value)) { $errors[] = "$value is not a valid address or city. "; } } if(preg_match("/state/I",$field)) { if(!preg_match("/^[A-Z][A-Z]$/",$value)) { $errors[] = "$value is not a valid state code."; } } if(preg_match("/email/I",$field)) { if(!preg_match("/^._@.+\\..+$/",$value)) { $errors[] = "$value is not a valid email address."; } } if(preg_match("/zip/I",$field)) { if(!preg_match("/^[0-9]{5,5}(\-[0-9]{4,4})?$/",$value)) { $errors[] = "$value is not a valid zipcode."; } } if(preg_match("/phone/I",$field) or preg_match("/fax/I",$field)) { if(!preg_match("/^[0-9)(xX -]{7,20}$/",$value)) { $errors[] = "$value is not a valid phone number. "; } } } } Foreach($_POST as $field => $value) { $$field = strip_tags(trim($value)); } If(@is_array($errors)) { $message_2 = ""; foreach($errors as $value) { $message_2 .= $value. "PLEASE TRY AGAIN
"; } include("form_login_reg.Inc"); exit(); } /*check if username already exists */ Include("dbstuff.Inc"); $cxn = mysqli_connect($host,$user,$password,$database) or die("Couldnt connect to server"); $sql = "SELECT user_name FROM customer WHERE user_name='$user_name'"; $result = mysqli_query($cxn,$sql) or die("Query died: user_name."); $num = mysqli_num_rows($result); If($num > 0) { $message_2 = "$user_name already used. Select another username."; include("form_login_reg.Inc"); exit(); } Else { $today = date("Y-m-d"); $sql = "INSERT INTO customer (user_name, create_date, password,first_name,last_name,street,city,zip,phone,fax,email) VALUES ('$user_name','$today',md5('$password'),'$first_name', '$last_name', '$street', '$city','$state','$zip', '$phone','$fax','$email')"; mysqli_query($cxn,$sql); $_SESSION['auth']="yes"; $_SESSION['logname'] = $user_name; /*SEND EMAIL TO NEW CUSTOMER*/ $emess = "You have successfully registered. "; $emess .= "Your new username and password are: "; $emess .= "\and\and\t$user_name\and\t"; $emess .= "$password\and\and "; $subj = "Your new customer registration"; $mailsend=mail("$email","$subj","$emess"); header("Location: secretpage.Php"); } Break; Default: include("form_login_reg.Inc"); } ?> MY INCLUDE FILE FOR THE DATABSE ACCESS I've doubled checked everything from fields and databse connections and bothing seems wrong, the error I'm getting is somwthing like this. Could not connect: access denied for user 'admin'@'localhost' (using password: YES) Something like that.. Thnx..C: -question by aufweb02
Keywords: access denied at database on .php myadmin

Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Similar Topics

Keywords : php, myadmin, access, mysql, database

  1. Os X Mysql Problem
    help needed (0)
  2. How To Connect Mysql With Jsp ?
    (4)
    after many i tried to connect to mysql with jsp, its was now successful. but i can connect at
    localhost. i wonder why that. can anybody help me ? it was so good if can post complete system. e.g
    (login).....
  3. Mysql Hacks
    (10)
    There are MySQL hacks out there, They can travel from your website to your computers. One of these
    are the MySQL injectors. The injection drops your tables and shuts down the program permanently. Be
    careful of these hacks, as they can destroy your MySQL related websites, programs, etc.....
  4. Database Normalization
    (0)
    For those of you... who really reall Ok... I am sharing to trap17 an easy to use image file to
    brush up your understanding of database normalization. Everytime I have to understand the concepts,
    I have to go through the complete text and its a little hard to do that... Had some requirement
    recently, and I thought I will prepare something like this and refer to, when there are future
    requirements. This is not exhaustive and very detailed. Helps to get some basic understanding. Prior
    knowledge about the databases, structure will help in understanding the complete concepts....
  5. Creating A Php Login System Using Mysql
    I need help in creating a login system, what I want is a login system (10)
    Hey everyone! I am helping someone make a login system using MySQL databases and a PHP login form.
    I have a fair bit of experiance in HTML and some javascript too. I have virtually no experiance in
    MySQL or PHP. Anybody know of any good PHP login systems that allow you to creat a personalised
    page for each user and when they login the system transfers the user to their page. Another thing
    that the system MUST have is a way of stopping unwanted users entering someones page. CODE For
    example lets say I register and my UN is jesse123 and my personalised pages addre....
  6. The Only Reason I Choose Ms Sql Server Rather Than Mysql
    (2)
    The only reason i choose ms sql server rather than mysql is, MS SQL has more security features!!
    MySQL is lacking a lot in my opinions - Lack in wide char, like nvarchar, I developed some
    application to support chinese letter, and dont know how to build one in mysql - Lack in t-sql
    syntax, like query in query is not fully supported - Does not have today SQL features like BI
    support (today really required) And compare MS SQL to MySQL, the only reason why mysql is
    favourable is - it is free! Dont u guys agree?....
  7. Need Advice On Setting Up Mysql Database.
    I have a huge amount of daily data updates to be inserted. (4)
    First of all, to get the idea of what I am trying to achieve here, please have a look at my
    idea thread, entitled Idea For Using A Cron Job To Grab Daily Travian Map.sql Updates . This gives
    a prelude to the project, what it is for, what it is supposed to do, etc. Now, what I need is
    specific advice on setting up the mySQL database(s) to implement this idea. There is a useful FAQ
    file for how to make use of the map.sql data located on the help.travian.com website, which also
    gives an example of the CREATE TABLE instruction that matches the data in the map.sql fi....
  8. Database Or Pdf
    Best way to list books on my site (3)
    Hi all, I am not sure if this is the right place to post but I'm sure you'll tell
    me if it's not. My problem is this: I have a website where I sell books and it's one of
    those simpleton sites where I don't need to know code, I just click icons etc Anyway, I can
    upload images to the server and need to have them in different resolutions and link from a thumbnail
    to the larger picture. What I am trying to say is I have about 6000 books to display on my
    website which is impractical as it takes me about 10 mins to load 1 copy. What is the ....
  9. The Best Free Php Mysql Blog
    any idea (5)
    Hi everyone Recently i tried to upload a personal blog. as I know a bit of PHP programming I was
    looking for a free open source PHP blog. first I tried Wordpress out but there was few problems
    that i needed to change php.ini or .htaccess file and also some other PHP settings. as i was trying
    it out on a free web host i didn't have access to php.ini. so i have changed it from Wordpress
    to bblog , i have installed it successfully and i followed it's safety instruction (deleting
    install folder and install.php and CHmod config.php )then i got another problem i ....
  10. Mysql-essential-5.0.51 Installion Problem
    please help me.(urgent) (2)
    Dear friend, please help me. Iam working on php project (matchmaking site). I have downloaded mysql
    essensial 5.0.51. When i was installing mysql 5.0.51, i got following error - Error 1901: Error
    attempting to read from the source installation database: c:\windows\installer\527ec6.msi What
    is solution of this problem ? Iam using windows xp professional version 2002 (service pack 2).
    Please post your reply. Iam waiting for your answer. ....
  11. What Value Would I Use To Insert This Data?
    Help on insertion of data to database? (4)
    I am learning slowly but surely and I know some of you probably getting tired of my questions. ^^;;
    However, I believe one can not learn without asking questions. So.. if I get too bothersome.. just
    point me to some books or something. lol XD // Make a MySQL Connection mysql_connect("localhost",
    "name", "password") or die(mysql_error()); mysql_select_db("at2927_abq") or die(mysql_error()); //
    Insert a row of information into the table "example" mysql_query("INSERT INTO members (pasture)
    VALUES('Timmy Mellowman', '23' ) ") or die(mysql_error()); ....
  12. Mysql Query Problems
    I need some help or a tutorial? (6)
    I seem to be having trouble with getting my Query to post my user's ID numbers. CODE //
    Make a MySQL Connection mysql_connect("localhost", "user", "password") or die(mysql_error());
    mysql_select_db("databasename") or die(mysql_error()); // Retrieve all the data from the members
    table $result = mysql_query("SELECT * FROM members WHERE id='$id'") or die(mysql_error());  
    // store the record of the id table into $row $row = mysql_fetch_array( $result ); // Print out the
    contents of the entry echo $row ."; A little information about my table in my da....
  13. Database With Mysql++
    getting mySQL++ to work with trap17 (7)
    Hi, I'm trying to build an online game and figured the easiest way to do the server list would
    be to make a mySQL database for it; however, I use the con() command on the IP i get from pinging my
    website and I always get an abnormal program termination; however, it will work with the mySQL on my
    own machine. The code is below: CODE #include #include #include #include "pass.h"//holds
    my password (i program at school) int main(void) {     Connection
    con("t3jem3_test","64.69.46.210","t3jem3_t3jem",pass);     Query query = con.query();     query
        Re....
  14. Php With Simple Csv List As Database, What Do U Think?
    (2)
    I've designed a php website and i used simple CSV file as my database because of few reasons
    my client had to pay more to active MySQL database was a simple product list it was easy to
    convert product list from existing Excel file to CSV it is easy to make any changes so i have few
    files to convert to CSV if i wanna update the website. I know it's less secure specially if
    it's an online business (which is not). question is : what are disadvantages? is that slower
    than MySQL? is there more possibility of occurring bug? is that less professional? or ......
  15. Forum Database
    Forum Database Space and its capacity to hold content (9)
    Okay, I have a forum which is growing daily. Even though members aren't that many, I'm still
    concerned over my database space and its capacity to hold the forum's content. Since post counts
    take up database space, the remaining space will decrease daily, albeit by little amounts. Still, it
    will decrease anyway and eventually my database for that forum will run out of space. My question
    is: 1. Is there any way to possibly create a new database to continue holding the old
    database's increasing data? As in, my old database is there but its full and I creat....
  16. Database Migration - Seditio To Joomla
    any help is needed (1)
    Hi guys! I was desperately looking on internet for any help with migrating Seditio database to
    Joomla.. I`m admin on site which has more than 2500 members and day by day I get annoyed by pretty
    dumb solutions in Seditio.. can anyone tell me how to migrate the seditio site to joomla? any
    tutorials on internet on database migration? thanks....
  17. Best Database Software?
    (1)
    I'm quite new to creating and managing databases - yesterday I installed Filemaker Pro 9 and my
    initial thoughts are that it's amazing! Only just starting to get to grips with it - think
    it'll take some time to master it. What Database software do others use and what do people
    think of Filemaker Pro? Advantages/Disadvantages? ....
  18. Mysql Datatype Int() Question
    Not sure what value to use inside int() (1)
    Can anyone clarify what the value in int() actually does? CREATE TABLE job_class ( jc_id int(1)
    NOT NULL AUTO_INCREMENT PRIMARY KEY, jc_index int(2) NOT NULL, jc_name varchar(20) NOT NULL, jc_type
    varchar(20) NOT NULL ); I was under the impression that any integer value used inside a () was
    the limit that data-type would have. In the PRIMARY KEY column I was able to add integer values
    1-18. I'm kinda confused now If I can add 2 digit integers there then what is the point of
    assigning values inside brackets() For the varchar() any number put in there does limit....
  19. Mysql
    (7)
    Hi... One of my hosts hasn´t MySQL but i need to develop a login system so I need to know if it´s
    possible to use a MySQL database intalled in another host... If it´s possible can you explain me how
    to do it? Thanks in advance....
  20. Loading File Into Blob Fields To Mysql
    (1)
    Hi all! does any know how to load file into blob filed by sql script?....
  21. Questioning My Database Structure...
    (4)
    Okay, I posted a brief description of this in the PHP section, but I'll summarize myself again.
    I'm creating a PHP based game that is an economy game, where you start out with so many
    resources and a building, and you expand your business empire by building more buildings, which puts
    out more resources, and you can buy and sell on the market and whatnot. In the end, you try and
    become the wealthiest player in the game. Now I already have most of my database in MySQL set-up.
    But I've been told several different things on my structure and wanted your guys'....
  22. Mysql And Sql
    difference??? (7)
    I was wondering what is the difference between MySQL and SQL. I was really confused when i planned
    to do a project recently. This question has haunted me for a long time. Is it both same?....
  23. Php Myadmin
    (3)
    I just downloaded php, mySQL, and apache web server. I plan on running and testing a website on my
    local computer for now. I would like to know how to install php MyAdmin on my machine and how to
    configure it. thx:)....
  24. How To Connect Site To Database? [resolved]
    (12)
    I created a table in phpmyadmin, i copied the code in a file and uploaded this file onto the host.
    Now it says that it cannot connect to the database. The error lies within "mysql_select_db($db)" =>
    so i think this means that it cant find the database? If anyone knows how to let my login and
    register forms connect to the database, please help me. I used a login system from this site, ill
    post the link later.....
  25. Exporting Database Problems
    (3)
    On the host I moved here from, I have a database that I would like to transfer. On this host I am
    unable to use PHPMyAdmin, but I have MySQL-Admin 3.3 that works fine. But the main problem is the
    host. Recently they made it so you there is only a 1mb upload limit, and also that MySQL temporarily
    will not operate properly. Which is basically why I want to get off that host. Anyway, I can export
    each of the small tables easily. But I have tables that are over 2mb, and I do not know how I can
    get them. When I click on "Show table", the table starts to load, but then it sto....
  26. Mysql Database Copying
    (4)
    Is there anyway to merge 2 databases? I have an XOOPS and SMF both installed with Fantastico, and
    the bridge is not working like the Joomla! one does. (with the seperate db capability) i know how
    to transfer all the tables by hand but depending on how much data you have stored in mysql could
    take a long time. Take short time!? Help me!....
  27. Joomla Sql Error: Connection To Database Server Failed.
    (1)
    Hi Today I got this error-message in back-end on my Joomlasite hewwelub.trap17.com/d-lan/
    QUOTE This site is temporarily unavailable. Please notify the System Administrator Connection to
    database server failed. This is the first time I get this error, and I don't want or have
    the time to reinstall the site with all its features... The only time I have seen this problem yet
    is when I tried to unpublish a menu item. Any answer would be to great help, thanx /smile.gif"
    style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />....
  28. Connecting Php With Oracle Database
    (1)
    i need to connect oracle with php ..now me using oracle 10g can any one give me the solution
    thanks.....
  29. Installing Mysql On Unix, Linux
    (2)
    Download the latest version of MySQL.Choose the latest stable release and, from the stable release
    page, choose the option under "Source Downloads" marked "tarball (.tar.gz)". Download the file into
    a directory where files can be created and there is sufficient disk space. A good location is /tmp.
    Change directory to this location using: 1. % cd /tmp Note that the % character
    should not be typed in; this represents the Linux shell prompt and indicates that the command should
    be entered at the shell prompt. 2. Uncompress the package in the new ....
  30. Data Access Pages ?
    Help or Assistance with creating a data access page to collect data fr (1)
    QUOTE Hello All. I'm looking for some advise or assistance with getting a web page/access
    page running so that i can have the page online and collect the data live into my database for
    Project Management... Currently I'm developing a database using M$ Access, and need to have
    staff data enter sales information directly into a web form that can be linked to a database?
    I've looked at using a M$ Front page web form with data collected into a .CSV text file and
    extracting the data but i need to be able to let the staff review and update the data for each ....

    1. Looking for php, myadmin, access, mysql, database

Searching Video's for php, myadmin, access, mysql, database
See Also,
advertisement


Php Myadmin - can't access mysql database

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com