jQuery UI 1.7 Cheatsheet

JQUery ile PHP Süper gider bilirsiniz :) ve JQuery için tüm kodları(kullanılması) için önizleme için geliştirilen site'yi sizlere sunacam :=) Yaptığım Projelerde işime bayağı yarıyacak gibi , de hayde sizde faydalanın ..

http://oscarotero.com/jquery/ui.html

Read more...

Sansar Salvo - Beni Bul Anne


Sevdigim bir şarkı güzel olmuş. TEbrikler SAnsar SAlvo

Read more...

Location , Location , Location ...

Twitter Bu sefer kesin felakey seneryosu çiziyor bu tip açılımları sevmiyorum nedense ? ama webrazzi'de okudugum habere göre artık twitter bizim yer bilgimizi tutcakmış. Nedense Bunlar ddos saldırısı sonrasında böyle bir uygulama yapmaya karar verdiler hade hayırlısı .

Haberi tam metin oku

Read more...

Facebook Gruplarını Hackliyenlerin Yöntemi - Facebook Hackleme Taktiği - Lamerce

Son zamanlarda Cyber-Protest adlı bir team facebook Gruplarını kekliyor.
Yani buna lamerce kekleme diyelim.

Bir grup'a katılmışım ve o grub'u herhalde hackliyorlar GRUP'un adını "Bu Grup CYBERPROTEST TIM Tarafından Misyon Dahilinde HACKLENMİŞTİR" değiştirmeden önce tüm üyelerine Özel Mesaj atmışlar MEsajın KOnusu "FAcebook Hesaplarını Dondurun" diye Mesajı açtım ve ne göreyim aman allahım M.Ö'ki yöntemleri deniyorlar. Çoookk Utandım Çok :)


Mesajın İçeriği :

Sizi Sinirlendiren Birisimi Var?
Onun Facebook Hesabini Kilitlemek Istiyorsunuz?
Bunun Icin Yapmaniz Gereken Facebook.’unu Actigi Mail Hesabini Programa Girin.
Sonra Freeze Dedikten Sonra Program Ekraninda % Olarak cikiyor.
%100 Olmasini Bekleyin
Bu Islem Maksimum 2 – 3 Dakika Zaman Aliyor.
Tamamen Donduruldugunda Kurbaniniz Facebook Hesabina Girdigi Zaman “Hesabin Icin Izin Verilen Hatali Giris Sinirini Astin.
sifreni Unuttuysan , sifreni Buradan Yenile” seklinde Bilgi Notuyla Karsilasir. Bizzat EditOrlerimiz Tarafindan Test Edilip Onaylanmistir.
Bunu Arkadaslariniza saka seklinde Kullanabilirsiniz..

http://www.facebookdondur.tr.gg/

% 100 Çalışıyor Arkadaşlar Lütfen Şaka Amaçlı Kullanın :)

tabi bunu yiyen vatandaşlarımızda vardır :) neyse.

Bende girdim siteye(free site) ve E-mail bölümüne Argo kelime yazdım , Şifre bölümünede aynı türden bir küfür.


BU TEAM TV'LERDE TÜRK HACKER OLARAK GÖSTERİLİYOR

Lan ne türk hacker'ı , yabancılar bizim bu yöntemi kullandığımızı sanacak hackerlar bakımından . O zaman tüm türk defacer'larda Lamer olurlar .

2 PKK Grup yada sitesi hackledikleri için hemen haber veya reklam yapıyorlar :)
Yani bu türkiyede bi işe başlarken öncelikle felsefe'ye uy "2 pkk'lıya zarar ver yada 2 pkk'lı site hackle . HACKER OL" Neden bunu yazdım çünkü türkiyedeki medyanın mantığı bunu alıyor.

Gazetecilere kızmamak lazım aslında onlarda emir kulu her neyse .


SAHTE SİTEDEKİ BİLGİLER NEREYE GİDİYOR ?
Siteye girdiğinizde sonrada sayfanın kaynagını görüntülediginizde. Girdiğiniz bilgilerin ,  http://www.kokoin.com/uye/iskender/buyuk.php adresine Post ediliyor ve o adresi kullanan kişi CYBER-PROTEST Denen timden biridir kesin .



Read more...

JQuery Kullanarak PHP ve Mysql İşlemleri

This article will show you how to order a server-side list of fruit from a database using drag and drop behavior and then save them back to the database in order.
I recently worked on a project which required an unordered list to be re-ordered and then saved. I wasn't about to make users enter numbers next to each item so I looked toward JQuery's UI library.
Objective: We will display a list of fruit. The user can then drag the fruit and click a button to save the new order in the database.
For this example, let's use a database table named fruit with the following fields: id, name, weight.

  1. CREATE TABLE fruit (
  2. id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
  3. name VARCHAR(64) NOT NULL,
  4. weight TINYINT UNSIGNED NOT NULL
  5. ) TYPE = MYISAM ;
  6.  
  7. INSERT INTO fruit (name, weight) VALUES ('apple', 1);
  8. INSERT INTO fruit (name, weight) VALUES ('pear', 2);
  9. INSERT INTO fruit (name, weight) VALUES ('orange', 3);


I'll begin with some very basic PHP to setup the scenario.
This code queries the table ordered by weight. It then loops through and prints the result between list tags.

  1. <ul id="fruit_list">
  2.  
  3. // query fruit table and print out each item
  4. $result = mysql_query("SELECT id, name, weight FROM fruit ORDER BY weight");
  5.  
  6. // print the list items
  7. while ($row = mysql_fetch_assoc($result)) {
  8. echo "
  9. "

  10. . $row['name'] ."
\n";
  • }

  • ?>

  •  

  • ul>


  • We're printing a list of fruit from the database ordered by weight. Now how do we re-order the list of fruit? Simple, JQuery Sortables.
    JQuery isn't going to do everything automatically. We still need to setup the form with input fields to submit the data. Let's take the last code block and add in hidden form elements which contain the value of each fruit ID.

    1. <form method="POST" action="">
    2.  
    3. <ul id="fruit_list">
    4. // query fruit table and print out each item
    5. $result = mysql_query("SELECT id, name, weight FROM fruit ORDER BY weight");
    6.  
    7. // print the list items
    8. while ($row = mysql_fetch_assoc($result)) {
    9. echo '

  • . $row['id'] .'" />
  • '. $row['name'] .'
  • ';
  • }

  • ?>

  • ul>

  •  

  • form>


  • Notice we used fruit[] as the field name for all the rows. When the form is submitted,l the fruit ids will be put into a PHP array in the order they appear on the form. i.e. $_POST['fruit']. Since PHP already handles that for us, we just need a way to move the list items around.
    You will need to download both JQuery and the JQuery UI. (yes, they are separate)
    You can download the full package, but for sortables, you only need these components: UI Core, Draggable, and Sortable.
    Let's finish our script by adding the JQuery and some PHP to handle the sort and update the database.

    1. // make your db connection up here ...
    2. $link = mysql_connect('localhost', 'user', 'pass');
    3. $db = mysql_select_db('dbname', $link);
    4.  
    5. // handle POST
    6. if ($_POST) {
    7. // use $i to increment the weight
    8. $i=1;
    9. // loop through post array in the order it was submitted
    10. foreach ($_POST['fruit'] as $fruit_id) {
    11. // update the row
    12. $result = mysql_query("UPDATE fruit SET weight=". $i . " WHERE id=". mysql_real_escape_string($fruit_id));
    13. // increment weight to make the next fruit heavier
    14. $i++;
    15. }
    16. }
    17. ?>
    18. <script type="text/javascript" src="jquery-1.2.6.js">script>
    19. <script type="text/javascript" src="jquery-ui-1.5.1.min.js">script>
    20. <script type="text/javascript">
    21. // when the entire document has loaded, run the code inside this function
    22. $(document).ready(function(){
    23. // Wow! .. One line of code to make the unordered list drag/sortable!
    24. $('#fruit_list').sortable();
    25. });
    26. <form method="POST" action="">
    27.  
    28. <ul id="fruit_list">
    29. // query fruit table and print out each item
    30. $result = mysql_query("SELECT id, name, weight FROM fruit ORDER BY weight");
    31.  
    32. // print the list items
    33. while ($row = mysql_fetch_assoc($result)) {
    34. echo '

  • . $row['id'] .'" />
  • '. $row['name'] .'
  • ';
  • }

  • ?>

  • ul>

  •  

  • <input type="submit" name="reorder" value="Re-Order Fruit" />

  •  

  • form>


  • And there we have it. Now when you submit the form, it should re-sort your fruit, update the db, and the fruit list should be displayed in the new order after submission.
    Be sure to take a look at the JQuery Sortables documentation to see how much you can customize the behavior of the sort. With that and a little CSS, you can make this UI pretty sharp.



    Read more...

    Pastebin.com Servisini Tanıyalım

    Pastebin.com süper bir uygulama diyebiliriz. :)
    Php , python , vb tüm dilleri hemen hemen destekleyen servistir. Php kodlarınızın kolaylığı için renklendirme yapar , daha iyi anlaşılır.

    Kolay Kullanım
    Kolay bir kullanımı var mesela örnek : http://pastebin.com/m7a7fba95 burada PHP seçtim ve php kodumu yazdım .
    Renklendirmeyle kodum daha iyi anlaşılıyor ve orda sürekli kalıyor lazım ettiğinde direk kullanabilirim .

    Kısaltılmış URL Kullaranarak DAHA İyi bir hale getirmişler :)

    hade sizde kodlarınızı böyle saklayabilir daha iyi anlaşılması için pastebin.com'u kullana bilirsiniz..

    Read more...

    Beyin Fırtınasına bir Örnek

    Ceviz'de Gezerken bir Konuda Gördüm Bu Linki Süper Hazırlamışlar herşey Mükemmel. Sizinde İzlemenizi İstedim..Güzel Akıl Yapmışlar Herşey bir birine Uyumlu.n Sonda Yaptıklarıda Güzel olmuş.. Buraya Tıklayın İzleyin.

    Read more...