View: 3862|Reply: 10
|
Papar Maklumat terakhir dalam database
[Copy link]
|
|
Assalam.. Ada tak coding untuk memaparkan maklumat akhir dalam database guna php? |
|
|
|
|
|
|
|
guna syntax dalam database je.
kalau mysql ada beberapa cara. contohnya
SELECT * FROM table ORDER BY table.id DESC LIMIT 1 |
Rate
-
1
View Rating Log
-
|
|
|
|
|
|
|
- <?php
- include "connect.php";
- $id= $_POST['id_gambar']; //get the nama value from form
- $q = "SELECT * from gambar where id_gambar like '%$_POST[id_gambar]%' "; //query to get the search result
- $result = mysql_query($q); //execute the query $q
- echo "<center>";
- echo "<h2> Hasil Carian </h2>";
- echo "<table bgcolor='white' border='1' cellpadding='5' cellspacing='8'>";
- echo "
- <tr bgcolor='orange'>
- <td><font color='black'>No : </font></td>
- <td><font color='black'>Nama Gambar :</font> </td>
- <td><font color='black'>Lokasi : </font></td>
- </tr>";
- while ($data = mysql_fetch_array($result)) { //fetch the result from query into an array
- echo "
- <tr>
- <td><font color='black'>".$data['id_gambar']."</font></td>
- <td><font color='black'>".$data['namaGambar']."</font></td>
- <td><font color='black'>".$data['lokasi']."</font></td>
- </tr>";
- }
- echo "</table>";
- ?>
Copy the Code
nie koding aq, untuk wat carian. bila aq tekan cari, semua maklumat yg keluar, bukannya apa yang aq cari. minx tlg tgk'kn boleh?
n pasal yang masalah ats td, aq nk paparkan maklumat yang telah aq masukkan. Contoh, setelah isi semua maklumat, pengguna tekan hantar, dan akan dapat satu paparan maklumat yang telah dimasukkan td. Ada xcontoh coding 2?
Reply 2# kmkd |
|
|
|
|
|
|
|
Post Last Edit by kmkd at 17-1-2012 00:29
rujuk ln5. macam ni ke- "SELECT * from gambar where id_gambar like '%$_POST[id_gambar]%' "
Copy the Code macam ni?- "SELECT * from gambar where id_gambar like '%".$id."%' "
Copy the Code sebab kalau kau letak as '%$_POST[id_gambar]%', nanti query dalam db akan kekal jadi gitu. dia tak tukar ke value yang kau nak. sebab kau still dalam string. setahu aku la.
btw, kau dah masukkan dia as $id, maka gunakan.
selalunya masalah pada semua keluar semua tak keluar tu puncanya dari db query. pastikan tu betul dulu baru masuk dalam code
kalau nak tahu apa query yang dia pass, sebelum jalankan query, print_r;exit(); atau echo;exit(); dan try buat query pada sql editor eg. phpmyadmin untuk tengok betul ke query tu macam yang kau nak. |
Rate
-
1
View Rating Log
-
|
|
|
|
|
|
|
kau kod guna apa ni? maksud aku IDE? dreamweaver? |
|
|
|
|
|
|
|
Reply 4# kmkd
prob untuk carian tu aq dh settle kn.. sepatutnya coding mcm ini.. aq lupa nk tukar pada line 1 ja nama POST tu... thnks bro..
- $id= $_POST['noIklan']; //get the nama value from form
- $q = "SELECT * from gambar where id_gambar like '%$_POST[noIklan]%' "; //query to get the search result
Copy the Code
prob tu papar tu bro ada solution x? |
|
|
|
|
|
|
|
Reply 5# kmkd
dreamweaver... cs4 |
|
|
|
|
|
|
|
Papar Maklumat terakhir dalam database
Untuk paparkan tu kau boleh suruh dia bukak satu page lepas kau berjaya save.
Aku tak pasti untuk buat dalam pure php sebab aku guna codeigniter n cake.
(posted by mobile) |
|
|
|
|
|
|
|
Reply kmkd
prob untuk carian tu aq dh settle kn.. sepatutnya coding mcm ini.. aq lupa nk t ...
DjKiller Post at 17-1-2012 00:57
hok alowh! |
|
|
|
|
|
|
|
guna nih utk dapatkan id yg terakhir di masukkan. |
|
|
|
|
|
|
|
Reply 9# hanazz_88
hehehe~ |
|
|
|
|
|
|
| |
|