Welcome Guest ( Log In | Register)



 
Reply to this topicStart new topic
> Phpmyadmin And Php And Mysql, tutorial
farsiscript
post Jun 10 2006, 07:01 PM
Post #1


Super Member
*********

Group: Members
Posts: 357
Joined: 8-April 06
Member No.: 21,487



hi
i think phpmyadmin is nice script (3rdparti) to learn php and mysql , you can add database and then make tabel with rows and columns then you can customise (search , show rows , show columns , add rows , delete rows) tabel in phpmyadmin
when you are customise phpmyadmin , this script show you php code . you can use this code for browse in database .
for example :

showing tabel :
CODE
SELECT * FROM `tabelname` LIMIT 0 , 30


searching :
CODE
SELECT `columns` FROM `tabel` LIMIT 0 , 30

you can use with while loop

showing Ascending:
CODE
SELECT * FROM `tabelname` ORDER BY `id` ASC LIMIT 0 , 30


Showing Descending :
CODE
SELECT * FROM `tabelname` ORDER BY `id` DESC LIMIT 0 , 30


write in tabel :
CODE
mysql_query("INSERT INTO tabelname (columns1,columns2) VALUES ('Your text you want to put in columns1','Your text you want to put in columns2')");
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Mysql Database Setup : Setting Up Mysql Database(6)
  2. Complete Login System(57)
  3. Increment A Mysql Column(7)
  4. Can Reset The Id Auto Increment?(11)
  5. Import From Excel File Into Mysql Database(9)
  6. Mysql Database Size(6)
  7. Subquery In Mysql(5)
  8. Is It Possible To Access The Mysql Remotely?(10)
  9. Qupis : Free Hosting With Php, Mysql, Cpanel. (one Line Text Ad At Bottom)(41)
  10. Mysql Won't Update(4)
  11. Database With Mysql++(7)
  12. Mysql-essential-5.0.51 Installion Problem(2)
  13. Mysql, Php, Apache Downloads And Setup Was A Nightmare(10)
  14. Html Form!(4)
  15. Phpmyadmin(7)
  1. Remote Access Mysql(8)
  2. Please Explain Me Mysql(4)
  3. How Do I Find My Mysql Password? [resolved](5)
  4. Phpmyadmin Problem [resolved](2)
  5. Is The Database System Gone Again? [resolved](12)
  6. Problem Connecting To Phpmyadmin(2)
  7. Cms & Phpmyadmin(3)
  8. It Went Well For A While(5)
  9. Mysql Db Is Down Getting Following Error(2)
  10. Need Advice On Setting Up Mysql Database.(3)
  11. The Only Reason I Choose Ms Sql Server Rather Than Mysql(0)
  12. Mysql Database Not Working(3)
  13. Creating A Php Login System Using Mysql(9)


 



- Lo-Fi Version Time is now: 8th September 2008 - 06:13 PM