Sources/Post.php yi açın .
(Bul)
// Validate the poll...
(Hemen Üstüne Ekle)
$lower = 0; $upper = 0;
for ($i = 0; $i < strlen($_POST['subject']); $i++) {
$chr = $_POST['subject'][$i];
if ($chr >= 'a' && $chr <= 'z') $lower++;
elseif ($chr >= 'A' && $chr <= 'Z') $upper++;
}
if ($lower < $upper && $upper > strlen($_POST['subject'])/3)
$_POST['subject'] = ucwords(strtolower($_POST['subject']));
$lower = 0; $upper = 0;
for ($i = 0; $i < strlen($_POST['message']); $i++) {
$chr = $_POST['message'][$i];
if ($chr >= 'a' && $chr <= 'z') $lower++;
elseif ($chr >= 'A' && $chr <= 'Z') $upper++;
}
if ($lower < $upper && $upper > strlen($_POST['message'])/3)
$_POST['message'] = ucwords(strtolower($_POST['message']));
Otomatik Olarak Büyük Harfleri Küçültür : PROGRAMCI >>> Programcı gibi ..
Denenmiştir …
Bu kod yazılar veritabanına kayıt edilirken mi çalışıyor?
Comment yazan: mustafau — Mart 6, 2007 @ 5:00 pm
herhalde index.php dosyasının içine koyucaz ölemi ??
Comment yazan: EFEKAN — Mart 8, 2007 @ 1:23 pm
Sources klasöründeki post.php dosyasına yazılacak
Comment yazan: tovbekar — Mart 8, 2007 @ 2:11 pm
Hi
I want to all of you know, World is mine, and yoursite good
G’night
Comment yazan: GramBorder — Mart 20, 2007 @ 11:02 am