Ben bazı güzel adresler yapmaya çalışıyorum.
CREATE TABLE IF NOT EXISTS `games` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(200) DEFAULT NULL,
`about` text,
`release_date` int(10) NOT NULL DEFAULT '0'
php
$id = str_replace('_', ' ', $_GET['title']);
$query = mysql_query("SELECT * FROM games WHERE title = '$id'");
$row = mysql_fetch_assoc($query);
if (!mysql_num_rows($query)) exit('This game is not in the database.');
Karakterleri değiştirilmesi ile bazı yardıma ihtiyacınız var.
Benim oyunlarından biri unvanını diyelim edilir Day of Defeat: Source
i would like to access it with this: Day_of_Defeat_Source
. How would I do that? Removing colons, -, & and all that with nothing. Now its: Day_of_Defeat:_Source
i>
Ben değiştirin ama: _ ile bu gibi görünecektir: Day_of_Defeat__Source
i>
Nasıl bu etrafında gidebilir?
Benim ucuz İngilizce için üzgünüm, belki ve moderatör bu daha understanable yapabilirsiniz.