Ecstasy Posted March 12, 2006 Report Share Posted March 12, 2006 Vai eksistē kāda utilīta, kura ļautu vienkārši apskatīt kādu mysql tabulu. Piem - ja ir web lapa, kurā var atstāt, teiksim, ierosinājumus. Ar PHP šos ierosinājumus saglabā kādā MySql tabulā. Un jautājums - vai ir kāds, lietotājam draudzīgs rīks, ar kuru šos datus varētu apskatīt nerakstot atkal jaunu php skriptu. Kautkas līdzīgs PhpMyAdmin, tikai vienkāršāks, ar kuru nevarētu mainīt tabulu struktūru etc, bet vienkārši apskatīt un dzēst datus Link to comment Share on other sites More sharing options...
bubu Posted March 12, 2006 Report Share Posted March 12, 2006 Noteikti, ka ir. Ja nav, tad padsmit rindiņās uzrakstāms (select * from table un ar while izvadīt). Link to comment Share on other sites More sharing options...
Klez Posted March 13, 2006 Report Share Posted March 13, 2006 iedod lietotaajam useri ar read tiesiibaam :) un juuzo phpMyAdmin Link to comment Share on other sites More sharing options...
Grey_Wolf Posted March 13, 2006 Report Share Posted March 13, 2006 Klez--> gandriiz 3MB pret ~~20K toc apskates tuulis aiznejmtu patdscmit rindinjas (hi hi es vienu taadu tiko taisiju arii negribeejaas izmantot PHPMyadmin) Link to comment Share on other sites More sharing options...
Delfins Posted March 13, 2006 Report Share Posted March 13, 2006 (edited) <table> <?php include 'connect.php'; $sql = "select * from tabula"; $res = mysql_query($sql); while ( $row = mysql_fetch_row($res) ) { print '<tr><td>'.implode('</td><td>',).'</td><td><a href="delete.php?id={$row[prim_field]}">delete</a></td></tr>'; } ?> </table> delete.php domāju uzrakstīsi Edited March 13, 2006 by Delfins Link to comment Share on other sites More sharing options...
Recommended Posts