i am new in mysql so that i want to know if i will design my db by using phpmyadmin GUI can my db will working fine
Sure, if you have the basics to write your own database it will work using phpMyAdmin after creating such db and dumping your tables and data.
i know how to connect db in dreamweaver but don't know how to make a hyperlink with db....but i know how to make hyperlink in dreamweaver
What are you talking about? You want to make a hyperlink in dreamweaver? I dont understand? Do you mean you want to connect to the database through dreamweaver? I wouldnt know but you could just use the code to do it. Is this what you mean?
Strange issue, I have never heard of connecting to mysql through Dreamweaver unless Jalpari is using such program as php editor and he means the connection string instead of link :\
Just create a config.php and call it in every file you use. <?php if(isset($link)) { mysql_close($link); } $server = "localhost"; // server to connect to. $database = "db"; // the name of the database. $db_user = "user"; // mysql username to access the database with. $db_pass = "pass"; // mysql password to access the database with. $prefix_db = ""; // connect to the mysql server $link = mysql_pconnect($server, $db_user, $db_pass) or die ("Could not connect to mysql because ".mysql_error()); // select the database mysql_select_db($database) or die ("Could not select database because ".mysql_error()); ?> PHP: