PHP Kullanımı .. Ben şu anda bir veritabanından veri gezinmek ve kapmak için bir sorgu dizesi kullandığı inşa edilmiş küçük bir uygulaması var. Veritabanındaki anahtar dize aynı zamanda ve bu artık kabul edilebilir değildir. Bunu değiştirmek gerekiyor. Ben db anahtarı gizlemek ve bunun yerine bir oturum kullanmak istiyorum ama bunu nasıl emin değilim. Aslında, mümkünse eğer oturumlarını kullanmak istiyorum sorgu dizesinde başka değişkenler de vardır.
page.php? var1 ve var2 & id = 1
Bu benim dize gibi görünüyor. Ben veritabanında sonuçları döngü yaşıyorum ve her satır id verdik böylece kullanıcı istediği satırı tıklattığında, ama ben bir seans ile bunu nasıl emin değilim ne zaman.
Herkes herhangi bir fikir var mı?
Teşekkürler
EDIT: I'm developing an email type system where senders and recipients are getting and sending mail. Each piece of mail that is stored on the server will have its own unique key. Currently, I am using that number to retreive the message but the problem is that I don't want people to change the number and read other people's mail. I can probably use a GUID for this or even some sort of hash but I really hate long query strings. I was just thinking it would be so much cleaner if there was a way to "hide" the id all together.