+ Reply to Thread
Results 1 to 5 of 5

Thread: How to connect Mysql in Dreamweaver

  1. #1
    Junior Member colmem is on a distinguished road
    Join Date
    Jan 2012
    Posts
    3

    How to connect Mysql in Dreamweaver

    I have make a test in my computer, i can successful use insert query update mysql table in my localhost, I have created the mysql in MySQL Management in DirectAdmin. But I can not connect host1free mysql in dreamweaver. Is my setting incorrect.
    i create the mysql :

    server name: i put my database name that creat in mysql management
    server location: localhost/box5.host1free.com
    username: i put my user name that creat in mysql management (colmem_admin)
    password: i put my password that creat in mysql management

    Then i cannot chose the table for test connection in dreamweaver, it said connect error in colmem_admin@localhost.

    In php programme, i also try connect but still not work too.

    mysql_connect("localhost","colmem_admin","mypassword");

  2. #2
    Junior Member gamezone is on a distinguished road
    Join Date
    Dec 2011
    Posts
    18

    Re: How to connect Mysql in Dreamweaver

    I think you can't connect with Dreamweaver because it's a local mysql server (localhost).

  3. #3
    Junior Member colmem is on a distinguished road
    Join Date
    Jan 2012
    Posts
    3

    Re: How to connect Mysql in Dreamweaver

    Thanks for reply.

    Then I would like to know can I insert data and get data by not using phpadmin?

  4. #4
    Super Moderator Modestas is on a distinguished road Modestas's Avatar
    Join Date
    Jun 2011
    Posts
    1,859

    Re: How to connect Mysql in Dreamweaver

    You can use PHP scripts to insert data in MySQL database tables, for example, PHP MySQL Insert Into

  5. #5
    Junior Member colmem is on a distinguished road
    Join Date
    Jan 2012
    Posts
    3

    Re: How to connect Mysql in Dreamweaver

    thank you.
    That's work!

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34