PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Friday, February 18, 2022

[FIXED] No edit, copy and delete option in PhpMyAdmin

 February 18, 2022     mysql, phpmyadmin     No comments   

Issue

I have inserted some values into two columns but i can't find the Edit, Copy, Delete options in the browsing page in phpmyadmin.

I thought that i need to update phpmyadmin but i still have the same problem after updating.

CREATE TABLE school_s(
students varchar(255),
id int 
);

enter image description here


Solution

You must create a field primary key in your table to see those options. like-

CREATE TABLE school_s(
students varchar(255),
id int(10) PRIMARY KEY
);


Answered By - The Beast
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing