* /Windows Airlines/ — The terminal is pretty and colorful, with
friendly stewards, easy baggage check and boarding, and a smooth
take-off. After about 10 minutes in the air, the plane explodes
with no warning whatsoever.

* /Mac Airlines/ — All the stewards, stewardesses, captains,
baggage handlers and ticket agents look the same, act the same,
and talk the same. Every time you ask questions about details, you
are told you don’t need to know, don’t want to know, and would you
please return to your seat and watch the movie.

* Linux Airlines — Disgruntled employees of all the other OS
airlines decide to start their own airline. They build the planes,
ticket counters, and pave the runways themselves. They charge a
small fee to cover the cost of printing the ticket, but you can
also download and print the ticket yourself. When you board the
plane, you are given a seat, four bolts, a wrench and a copy of
the seat-HOWTO.html. Once settled, the fully adjustable seat is
very comfortable, the plane leaves and arrives on time without a
single problem, the in-flight meal is wonderful. You try to tell
customers of the other airlines about the great trip, but all they
can say is, ‘You had to do what with the seat?’

>

Cevapla

Son Yazılar :

php-tr.com hakkında

arkadaşlar merhaba, - php-tr.com (portal + forum) - ve facebook da : PHP-TR bir oluşumumuz var. gittigidiyor, secretcv, sahibinden… ceşitli firmalarda calişan PHP’ci arkadaşlar ile ilk toplantımızı kadikoyde yaptik. etkinlikler hakkında bilgilendirilmek için lütfen face’deki grubumuza uye olur. tşk…

Günün Fırsatı

Alışveriş severlere : http://gunun-firsati.gittigidiyor.com/

PHP ile Çok Basit Bir Ziyaretçi Defteri Örneği

PHP ile Çok Basit Bir "Ziyaretçi Defteri Örneği" yapalım. Veritabanı tablomuz : PLAIN TEXT SQL: CREATE TABLE IF NOT EXISTS `ziyaretci` (   `id` int(11) NOT NULL AUTO_INCREMENT,   `ad` varchar(60) NOT NULL,   `soyad` varchar(60) NOT NULL,   `email` varchar(255) NOT NULL,   `yorum` text NOT NULL,   `tarih` date NOT NULL,   PRIMARY KEY (`id`) ) ENGINE=MyISAM  ; PHP kodlarımız: PLAIN TEXT PHP: <?php # form gonderidldi mi? if(!empty($_POST)){     [...]

Proxy Listesi

Proxy Listesine ihtiyacınız varsa : http://www.proxy-list.org adresini kullanabilirsiniz.

MySQL TRIM

UPDATE urun SET desc_urun = TRIM(TRAILING '<LI><A href="http:' FROM desc_urun) WHERE urun_id='5656' LIMIT 1; bu sorgu ile ürün açıklamasının sonunda yer alan hatalı html tagini siliyoruz. sadece hatalı olan ve sonda olan "<LI><A href="http:' FROM desc_urun" yi silecek.