This may be the serverfault question. I am using XAMPP in my system.I want to access the PHPMyadmin from my network's another computer.How can I achieve this?

Update:

I want to access through my application also.So How can I connect in this

mysql_connect(path,'root','')

And also I have changed in Apache httpd.conf file like this

<Directory />
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
link|improve this question

56% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Enter this in your other computer?

http://<IP of your computer (something like 192.168.0.100)>/phpmyadmin/

You can find out your IP by double-clicking on your network connection and looking at the second tab.

Edit: If you set the permissions correctly in MySQL, you can use

mysql_connect('<IP>','root','')

to connect.

link|improve this answer
@thejh I updated my Question – svk Nov 2 '10 at 8:49
I tried this.And also I added the user in phpmyadmin to access any host and password is NO.Its not work out.But It opens in the browser. – svk Nov 2 '10 at 9:08
If you set the permissions correctly in MySQL, you can use How can I set the permissions correctly – svk Nov 2 '10 at 10:14
Look here: cyberciti.biz/tips/… (you can skip step one) – thejh Nov 2 '10 at 10:30
For windows environment? – svk Nov 2 '10 at 10:40
show 5 more comments
feedback

Edit the httpd.conf file in the Apache and Give your IP address where ever you find either loccalhost or 127.0.0.1.

You can use the IP address of the host where DB exists

mysql_connect('ip_addr', 'mysql_user', 'mysql_password');

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.