How to enable designer view in PHPMyAdmin

Friday, November 25, 2011 | comments (68)



Want to create relations between tables using a drag and drop GUI on PHPMyAdmin ?
This is a tutorial on how to enable designer view in PHPMyAdmin to easily manage tables and relations in between them. 
I assume you are familiar with PHPMyAdmin, GUI and already installed it on your machine. First check whether you have already enabled the designer view before going into any of the configurations.
Go to PHPMyAdmin and select a database (not a table). It should be something like below if you have designer view enabled. I am repeating again DO NOT select any tables.

If you can not see a tab called a "Designer". You need to configure PHPMyAdmin to enable it. Open config file of your PHPMyAdmin. If you use WAMP, XAMPP or LAMP or similar distribution the config file is at
path to the distribution\phpMyAdmin\libraries\config.default.php
Edit the config file and change the following fields as shown bellow.
$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
$cfg['Servers'][$i]['relation'] = 'pma_relation';
$cfg['Servers'][$i]['table_info'] = 'pma_table_info';
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
$cfg['Servers'][$i]['column_info'] = 'pma_column_info';
$cfg['Servers'][$i]['history'] = 'pma_history';
$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
Create a database on phpMyAdmin named “phpmyadmin” without quotes and execute the following sql code.
-- --------------------------------------------------------
-- SQL Commands to set up the pmadb as described in Documentation.html.
--
-- DON'T RUN THIS SCRIPT ON MySQL 4.1.2 AND ABOVE!
-- Instead, please run create_tables_mysql_4_1_2+.sql.
--                                                
-- This script expects the user pma to already be existing. If we would put a
-- line here to create him too many users might just use this script and end
-- up with having the same password for the controluser.
--                                                    
-- This user "pma" must be defined in config.inc.php (controluser/controlpass)                        
--                                                 
-- Please don't forget to set up the tablenames in config.inc.php                                
--
-- $Id: create_tables.sql 10257 2007-04-07 14:40:24Z lem9 $
-- --------------------------------------------------------
--
-- Database : `phpmyadmin`
--
DROP DATABASE IF EXISTS `phpmyadmin`;
CREATE DATABASE `phpmyadmin`;
USE phpmyadmin;
-- --------------------------------------------------------
--
-- Privileges
--
GRANT SELECT, INSERT, DELETE, UPDATE ON `phpmyadmin`.* TO
'pma'@localhost;
-- --------------------------------------------------------
--
-- Table structure for table `pma_bookmark`
--
CREATE TABLE `pma_bookmark` (
`id` int(11) NOT NULL auto_increment,
`dbase` varchar(255) NOT NULL default '',
`user` varchar(255) NOT NULL default '',
`label` varchar(255) NOT NULL default '',
`query` text NOT NULL,
PRIMARY KEY  (`id`)
) TYPE=MyISAM COMMENT='Bookmarks';
-- --------------------------------------------------------
--
-- Table structure for table `pma_column_info`
--
CREATE TABLE `pma_column_info` (
`id` int(5) unsigned NOT NULL auto_increment,
`db_name` varchar(64) NOT NULL default '',
`table_name` varchar(64) NOT NULL default '',
`column_name` varchar(64) NOT NULL default '',
`comment` varchar(255) NOT NULL default '',
`mimetype` varchar(255) NOT NULL default '',
`transformation` varchar(255) NOT NULL default '',
`transformation_options` varchar(255) NOT NULL default '',
PRIMARY KEY  (`id`),
UNIQUE KEY `db_name` (`db_name`,`table_name`,`column_name`)
) TYPE=MyISAM COMMENT='Column information for phpMyAdmin';
-- --------------------------------------------------------
--
-- Table structure for table `pma_history`
--
CREATE TABLE `pma_history` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`username` varchar(64) NOT NULL default '',
`db` varchar(64) NOT NULL default '',
`table` varchar(64) NOT NULL default '',
`timevalue` timestamp(14) NOT NULL,
`sqlquery` text NOT NULL,
PRIMARY KEY  (`id`),
KEY `username` (`username`,`db`,`table`,`timevalue`)
) TYPE=MyISAM COMMENT='SQL history for phpMyAdmin';
-- --------------------------------------------------------
--
-- Table structure for table `pma_pdf_pages`
--
CREATE TABLE `pma_pdf_pages` (
`db_name` varchar(64) NOT NULL default '',
`page_nr` int(10) unsigned NOT NULL auto_increment,
`page_descr` varchar(50) NOT NULL default '',
PRIMARY KEY  (`page_nr`),
KEY `db_name` (`db_name`)
) TYPE=MyISAM COMMENT='PDF relation pages for phpMyAdmin';
-- --------------------------------------------------------
--
-- Table structure for table `pma_relation`
--
CREATE TABLE `pma_relation` (
`master_db` varchar(64) NOT NULL default '',
`master_table` varchar(64) NOT NULL default '',
`master_field` varchar(64) NOT NULL default '',
`foreign_db` varchar(64) NOT NULL default '',
`foreign_table` varchar(64) NOT NULL default '',
`foreign_field` varchar(64) NOT NULL default '',
PRIMARY KEY  (`master_db`,`master_table`,`master_field`),
KEY `foreign_field` (`foreign_db`,`foreign_table`)
) TYPE=MyISAM COMMENT='Relation table';
-- --------------------------------------------------------
--
-- Table structure for table `pma_table_coords`
--
CREATE TABLE `pma_table_coords` (
`db_name` varchar(64) NOT NULL default '',
`table_name` varchar(64) NOT NULL default '',
`pdf_page_number` int(11) NOT NULL default '0',
`x` float unsigned NOT NULL default '0',
`y` float unsigned NOT NULL default '0',
PRIMARY KEY  (`db_name`,`table_name`,`pdf_page_number`)
) TYPE=MyISAM COMMENT='Table coordinates for phpMyAdmin PDF output';
-- --------------------------------------------------------
--
-- Table structure for table `pma_table_info`
--
CREATE TABLE `pma_table_info` (
`db_name` varchar(64) NOT NULL default '',
`table_name` varchar(64) NOT NULL default '',
`display_field` varchar(64) NOT NULL default '',
PRIMARY KEY  (`db_name`,`table_name`)
) TYPE=MyISAM COMMENT='Table information for phpMyAdmin';
-- --------------------------------------------------------
--
-- Table structure for table `pma_designer_coords`
--
CREATE TABLE `pma_designer_coords` (
`db_name` varchar(64) NOT NULL default '',
`table_name` varchar(64) NOT NULL default '',
`x` INT(11) default NULL,
`y` INT(11) default NULL,
`v` TINYINT(4) default NULL,
`h` TINYINT(4) default NULL,
PRIMARY KEY (`db_name`,`table_name`)
) TYPE=MyISAM COMMENT='Table coordinates for Designer'
That it Now you can access the designer tab on PHPMyAdmin. For more details refer
Share this article :

+ comments + 68 comments

Anonymous
December 27, 2012 at 8:00 PM

I think this is among the most vital info for me.
And i am glad reading your article. But want to remark on some general things, The website style is perfect, the articles
is really nice : D. Good job, cheers

Feel free to visit my weblog :: Products to make money
Feel free to surf my webpage ::

Anonymous
December 28, 2012 at 7:15 PM

Ahaa, its fastidious conversation about this post at this place at
this webpage, I have read all that, so now me also commenting at
this place.

My homepage ... private krankenversicherung beamte
Check out my blog post

Anonymous
December 29, 2012 at 11:21 AM

Ahaa, its fastidious dialogue on the topic of this
post here at this website, I have read all that, so now me also
commenting here.
My site :: designer mode online shop

Anonymous
December 29, 2012 at 2:28 PM

Unquestionably believe that which you stated. Your favorite reason appeared to be on the internet
the easiest thing to be aware of. I say to you, I definitely get annoyed while people think
about worries that they plainly do not know about.
You managed to hit the nail upon the top as well as defined out the whole thing without having side
effect , people can take a signal. Will probably be back to get more.
Thanks
Here is my web site : kredit trotz schlechter bonität

Anonymous
December 30, 2012 at 12:07 PM

This is a topic that's near to my heart... Take care! Where are your contact details though?

Here is my page: ratenzahlung ohne schufa
My web site

Anonymous
December 30, 2012 at 7:16 PM

Greetings from Florida! I'm bored at work so I decided to browse your website on my iphone during lunch break. I really like the info you present here and can't wait
to take a look when I get home. I'm surprised at how quick your blog loaded on my mobile .. I'm
not even using WIFI, just 3G .. Anyhow, excellent blog!
Here is my webpage ; small start up business

Anonymous
January 2, 2013 at 2:16 AM

Very rapidly this website will be famous among
all blogging visitors, due to it's nice articles
Here is my weblog : reseller hosting linux

Anonymous
January 26, 2013 at 4:42 AM

I think the admin of this website is genuinely working hard for his site, since here every stuff is quality
based material.
Also visit my web blog - vacation planner

Anonymous
January 26, 2013 at 8:04 AM

Admiring the time and energy you put into your website and detailed information you
offer. It's great to come across a blog every once in a while that isn't the same outdated rehashed information.
Excellent read! I've saved your site and I'm adding your RSS feeds to my Google account.
Also visit my homepage :: refinance home equity loans

Anonymous
January 26, 2013 at 11:00 AM

I love what you guys are up too. This kind of clever work and reporting!
Keep up the fantastic works guys I've you guys to blogroll.
Feel free to surf my web site - preisvergleich private krankenversicherungen

Anonymous
February 1, 2013 at 10:52 AM

Hey would you mind sharing which blog platform you're using? I'm going to start my own blog in the near future but I'm having a hard time deciding between BlogEngine/Wordpress/B2evolution and Drupal. The reason I ask is because your layout seems different then most blogs and I'm
looking for something unique. P.

S My apologies for getting off-topic but I had to ask!
Feel free to visit my web-site ; freiwillige krankenversicherung vergleich

Anonymous
February 1, 2013 at 1:08 PM

Hi everyone, it's my first visit at this website, and piece of writing is in fact fruitful designed for me, keep up posting such articles.
Have a look at my website : marken outlet online shops

Anonymous
February 1, 2013 at 5:54 PM

Why users still use to read news papers when in this technological world the whole thing is presented on web?
Have a look at my site reseller shared hosting

Anonymous
February 4, 2013 at 7:19 PM

Please let me know if you're looking for a writer for your site. You have some really great posts and I feel I would be a good asset. If you ever want to take some of the load off, I'd
love to write some content for your blog in exchange for
a link back to mine. Please shoot me an e-mail if interested.

Regards!
My website ... incoming krankenversicherung vergleich

Anonymous
February 5, 2013 at 8:43 AM

Nice blog here! Also your web site loads up fast! What host are you
using? Can I get your affiliate link to your host?
I wish my website loaded up as quickly as yours lol

Here is my homepage :: krankenversicherung Vergleichen
Check out my page - Learn Additional Here

Anonymous
February 12, 2013 at 3:14 PM

I'm not sure where you are getting your information, but good topic. I needs to spend some time finding out more or understanding more. Thanks for excellent information I was searching for this info for my mission.
My webpage :: best web hosting companies

Anonymous
February 14, 2013 at 7:59 AM

Amazing blog! Do you have any recommendations for aspiring writers?
I'm hoping to start my own blog soon but I'm a little lost on everything.
Would you propose starting with a free platform like Wordpress or go for a paid option?

There are so many choices out there that I'm totally confused .. Any recommendations? Bless you!

My webpage :: Kredit bekommen
My web site :: selbständig kredit

Anonymous
February 14, 2013 at 9:58 AM

Does your website have a contact page? I'm having a tough time locating it but, I'd like to shoot
you an e-mail. I've got some recommendations for your blog you might be interested in hearing. Either way, great blog and I look forward to seeing it grow over time.

Look into my site krankenkassenvergleich

Anonymous
February 15, 2013 at 10:21 PM

Today, I went to the beach front with my kids. I found a sea shell and gave it
to my 4 year old daughter and said "You can hear the ocean if you put this to your ear." She put the shell to
her ear and screamed. There was a hermit crab inside and it pinched her ear.
She never wants to go back! LoL I know this is
completely off topic but I had to tell someone!

Also visit my web page ... website search engine optimization

Anonymous
February 16, 2013 at 9:05 AM

Hi, the whole thing is going sound here and ofcourse every one
is sharing information, that's actually good, keep up writing.

Here is my web site; what is a small business
my site - business business opportunities

Anonymous
February 18, 2013 at 11:17 PM

I for all time emailed this webpage post page to all my friends, as if like to read it next my links will
too.

my site ... best caribbean vacation deals

Anonymous
March 14, 2013 at 5:06 PM

Excellent blog here! Also your website a lot up fast!
What web host are you the use of? Can I get your affiliate link for
your host? I desire my website loaded up as fast as yours lol

My web site ... Top 10 Business Ideas

Anonymous
March 18, 2013 at 9:54 PM

I do not even understand how I finished up here, however I assumed this post was once good.
I don't realize who you are but certainly you are going to a well-known blogger for those who aren't
already. Cheers!

Review my web-site: Bad credit home refinance loans

Anonymous
March 28, 2013 at 2:07 PM

un6ti7uws

My page; www.electrictoothbrushtips.co.uk

Anonymous
April 1, 2013 at 5:47 AM

Hey there this is kind of of off topic but I was
wanting to know if blogs use WYSIWYG editors or if you have to manually
code with HTML. I'm starting a blog soon but have no coding know-how so I wanted to get guidance from someone with experience. Any help would be enormously appreciated!

My webpage kredit ohne sicherheiten

Anonymous
April 9, 2013 at 4:56 AM

That is really fascinating, You are an excessively skilled blogger.
I have joined your rss feed and stay up for in search of more of your great post.
Additionally, I have shared your web site in
my social networks

Feel free to visit my homepage; guaranteed search engine placement

Anonymous
April 22, 2013 at 3:28 PM

David Pyott I think this is where this industry is
going, and until she had her breast reduction surgery 36dd lips done.

Now with all that free time? Knuckey pushed back on the operating table, too.
Clearly, there is one issue to address. Being the patient patient,
I didn't, and I want you to get the word out about their employment needs.

Here is my blog post; Beforeandafterbreastimplants.Info

Anonymous
April 26, 2013 at 9:28 PM

This is a chronic condition in which the number of pustules you will experience large painful cyst like bumps, but not penice inlargement for continued use.
These glands open on the edge, take a look at penice inlargement what Rosacea means.
But if this were possible, we wouldn't have a billion dollar diet and weight control is sufficient. Inflammation is regulated by hormones called prostaglandins. Women who take antibiotics are also at risk of losing analytical skills.

Look into my web-site :: Http://Www.Maleedgeexposed.Com/Sitemap

Anonymous
April 28, 2013 at 6:28 PM

And it also expands insurance coverage to include second opinions for all cancer patients and pay for Breast Implants Questions To Ask Doctor, said Helena Chang, M.


Here is my blog post: average cost for breast implants

Anonymous
May 5, 2013 at 3:07 PM

You really make it seem so easy with your presentation but I find this matter to be really something which I think I would never understand.
It seems too complicated and very broad for me. I'm looking forward for your next post, I will try to get the hang of it!

Here is my homepage Cheap Nike Jerseys

Anonymous
May 7, 2013 at 1:37 PM

Good day! I know this is kind of off topic but I was wondering if you knew where I could locate a captcha plugin for my comment form?

I'm using the same blog platform as yours and I'm having trouble finding one?
Thanks a lot!

Feel free to surf to my blog post - Authentic Sidney Crosby Jersey

Anonymous
May 8, 2013 at 8:51 PM

It's amazing to pay a quick visit this website and reading the views of all mates about this paragraph, while I am also zealous of getting knowledge.

Here is my blog :: Read Full Article

Anonymous
May 15, 2013 at 5:30 AM

Thanks for sharing your info. I really appreciate your efforts and I am waiting for your next write ups thanks once again.


my web page - Oakley Frogskins

Anonymous
May 19, 2013 at 9:25 PM

Thanks for one's marvelous posting! I quite enjoyed reading it, you can be a great author. I will ensure that I bookmark your blog and will come back down the road. I want to encourage you to definitely continue your great job, have a nice weekend!

Visit my homepage - www.explorethecapabilities.com

Anonymous
May 22, 2013 at 4:29 AM

Your style is really unique compared to other folks I have read stuff from.
Thanks for posting when you've got the opportunity, Guess I'll just
bookmark this web site.

Feel free to visit my web site Cheap Louis Vuitton Bags

Anonymous
May 22, 2013 at 1:26 PM

I was suggested this web site by my cousin. I am not
sure whether this post is written by him as no one else know such detailed about my
trouble. You're amazing! Thanks!

Here is my weblog ... http://www.wsmisports.com/louisvuittonoutlet.html

Anonymous
May 22, 2013 at 4:50 PM

Hey I knoω this is off topic but I was wondering if you κnew
оf anу wіdgetѕ I could add tо my blog that automaticаlly tωeet my newest twitter updates.
I've been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

my weblog: diamondlinks review

Anonymous
May 23, 2013 at 5:31 AM

I do agree with all the ideas you've offered in your post. They're really convincing and can certainly work.

Nonetheless, the posts are very brief for beginners.

Could you please lengthen them a bit from subsequent time?
Thanks for the post.

My website; Cheap Jerseys

Anonymous
May 25, 2013 at 2:40 AM

Every weekend i used to go to see this web page, for the reason that i wish for enjoyment, as this this site conations truly pleasant
funny material too.

Stop by my website; slc-wireless.com

Anonymous
May 25, 2013 at 8:06 AM

Hi would you mind letting me know which web host you're working with? I've loaded your blog in 3 completely different internet browsers
and I must say this blog loads a lot faster then most.
Can you suggest a good hosting provider at a honest
price? Kudos, I appreciate it!

My weblog :: Louis Vuitton Outlet

Anonymous
May 26, 2013 at 6:20 PM

When someone writes an paragraph he/she keeps the thought of a user in his/her mind that how a user can know
it. Thus that's why this paragraph is outstdanding. Thanks!

Here is my web page :: Air Jordan 2013

Anonymous
May 27, 2013 at 12:52 PM

of course like your web site but you need to test the spelling on several of
your posts. Many of them are rife with spelling problems and I find it very troublesome
to tell the reality however I will certainly come back again.


Here is my web blog :: Michael Kors Canada

Anonymous
May 27, 2013 at 11:28 PM

obviously like your website but you have to take a look at the spelling on quite a few of your posts.
Several of them are rife with spelling issues and I find
it very troublesome to tell the truth then again I'll definitely come again again.

Feel free to surf to my blog post: http://www.tedxyse.com/

Anonymous
May 28, 2013 at 6:26 PM

To open the blue lotus with weight loss mayo clinic 16 petals of the Vishuddha or the throat chakra.
This department is responsible for at least half of our serious crime.


My web page :: Africanmangoexposed.net

Anonymous
May 30, 2013 at 3:19 AM

Hi there! I know this is kind of off-topic however I needed
to ask. Does running a well-established website like yours require a massive amount work?
I am completely new to operating a blog but I do write in
my diary everyday. I'd like to start a blog so I can share my own experience and thoughts online. Please let me know if you have any kind of suggestions or tips for brand new aspiring bloggers. Appreciate it!

Here is my page; helpful resources

Anonymous
May 31, 2013 at 6:51 AM

An impressive share! I've just forwarded this onto a coworker who had been doing a little homework on this. And he in fact bought me lunch simply because I stumbled upon it for him... lol. So allow me to reword this.... Thank YOU for the meal!! But yeah, thanks for spending time to talk about this subject here on your web site.

Here is my web blog :: continue

Anonymous
June 1, 2013 at 7:21 AM

When I initially commented I clicked the "Notify me when new comments are added"
checkbox and now each time a comment is added I get three emails with the same comment.
Is there any way you can remove people from that service?
Thank you!

my blog post ... Cheap Louis Vuitton Bags

Anonymous
June 3, 2013 at 3:32 PM

Hello, i read your blog from time to time and i own a similar one
and i was just wondering if you get a lot of spam responses?
If so how do you stop it, any plugin or anything you can
advise? I get so much lately it's driving me insane so any support is very much appreciated.

Feel free to visit my web site ... Montre Guess

Anonymous
June 7, 2013 at 2:51 PM

Wow, awesοme blog layоut! How long haνe yοu beеn
blogging for? you mаκe blogging look
easy. The οveгall look of your
ωeb sіte iѕ fantastic, aѕ well as the content!



My ωebpage; lloyd irvin

Anonymous
June 7, 2013 at 3:41 PM

Wonderful beat ! I ωould like to apрrеntice ωhile you
amend yоuг web site, how could і ѕubsсribe
foг a blοg websitе? The account helpеd mе a acceptаblе deal.
I had been tiny bit acquаinted of this
your brοadcast offered bгight cleаr іԁеa

My ρage :: reputation management

Anonymous
June 9, 2013 at 12:56 PM

Greetings from Colorado! I'm bored to death at work so I decided to check out your website on my iphone during lunch break. I really like the information you present here and can't wait to take a look when I get home.

I'm shocked at how quick your blog loaded on my phone .. I'm not
even using WIFI, just 3G .. Anyhow, superb blog!


Here is my site: Find Out More

Anonymous
June 10, 2013 at 1:59 AM

Highly descriptive article, I liked that a lot. Will there be
a part 2?

my page ... Sac Louis Vuitton

Anonymous
June 10, 2013 at 11:05 PM

Write more, thats all I have to say. Literally, it seems as though you relied on
the video to make your point. You definitely know what youre talking about,
why waste your intelligence on just posting videos to your site when you could be giving
us something informative to read?

Here is my weblog: Cheap Louis Vuitton Handbags

Anonymous
June 10, 2013 at 11:26 PM

Good information. Lucky me I recently found your site
by accident (stumbleupon). I have book-marked it for later!



Feel free to visit my webpage Soldes Air Jordan

Anonymous
June 11, 2013 at 8:07 AM

Link exchange is nothing else however it is simply placing the other person's website link on your page at suitable place and other person will also do same for you.

Look at my weblog: Louis Vuitton Pas Cher [smu-fr.org]

Anonymous
June 12, 2013 at 9:09 AM

Hi there, just became aware of your blog through Google, and found that it's really informative. I'm going to watch out for brussels.

I will appreciate if you continue this in future.
Lots of people will be benefited from your writing. Cheers!


Here is my web blog; Cheap NFL Jerseys

Anonymous
June 12, 2013 at 10:24 PM

We stumbled over here different web address and thought I might as well check
things out. I like what I see so i am just following
you. Look forward to looking at your web page again.



Here is my page ... Nike Blazers

Anonymous
June 14, 2013 at 11:42 AM

Oh my goodness! Awesome article dude! Thank you so much, However I am encountering
troubles with your RSS. I don't know why I am unable to join it. Is there anyone else having identical RSS problems? Anyone that knows the answer will you kindly respond? Thanks!!

Feel free to visit my web site :: Low Nike Blazers

Anonymous
June 14, 2013 at 12:40 PM

My brother recommended I may like this web site. He used
to be totally right. This submit truly made my
day. You can not consider simply how much time I had
spent for this information! Thanks!

Here is my web blog - Mulberry Outlet UK

Anonymous
June 16, 2013 at 10:21 AM

If you don't lose the clean refreshing taste of pure water. Some Spinning enthusiasts get really hard south african diet core into Spinning workouts and don't do anything dangerous unsupervised.
But south african diet to Cowboy Up, the name of Adipex-P, Fastin,
Ionamin, Adipex.

my weblog ... Hoodia Gordonii

Anonymous
June 18, 2013 at 3:27 PM

That was an great read through! Thanks for
that. I hope you have a whole lot of results with your blog site.
I don't necessarily mean to self advertise but this is an fantastic excess weight decline solution.
Carb Blocker

Post a Comment

 
Support : Sanjaya Einy | Blogger Tricks Templatee
Copyright © 2011. Tips and Tricks NET - All Rights Reserved
Template Created by Creating Website Published by Mas Template
Proudly powered by Premium Blogger Template