everything in the known universe about rgesit

tertulis menulis ditulis


Translation of The Holy AL-Qur'an

20 November 2007

Semarang LinksMakin banyak aja peminat postgre, barusan aja programmer friend di bekasi nanyain lewat chat. Untug di kantor ada buku php + postgre saya ketik deh line per line ke chat box nya ym (myym:prasastialam) :) .

beberapa contohnya ini …. ntar kita selalu lanjutkan yang lebih bermakna dalam dunia newbie programming, toh saya juga newbie …. tapi saatnya atur strategi untuk berperang melawan kebodohan dan kemiskinan termasuk masuki era technolgy yang takkan terkejar oleh manusia tak berpengalaman dan tidak berwawasan luas seluas nusantara .. hayah

Saya sertakangroup chat saya di ym yang menyediakan khusus untuk kampus tercinta udinus semarang, biaralah orang mau bilang apa kaena bagaimanapun aku dilahirkan di dunia ini tak pernah menyangka bahwa akan ditempatkan di kota yang menjadi penghasil LOENPIA nomor satu itu (kata siapa tuh ?? mbuh)

Rektor bapak DR edi terima kasih atas saran info dan diskusi kita selama ini, dekan bapak edi mulyanto menjadi teman kami dalam berbagai cerita dan aktifitas, kaprogdi bu ayu pertiwi semua materi yang kau berikan ada kok implementasinya di dunia kerja, karena kebanyakan dulu kita anggap wuih ibu ayu english content ngajarnya trus apa gunanya ya materi ini apa iya kepake ..?? wis2 bener2 tak tau trima kasih kita saat itu .. Maap ya bu ayu .saran dan kritik mu yang banyak membangun kami menjadi lebih responsive terhadap ilmu baru, bapak dosen pak ifan, pak edi faisal, bu etika kartikadarma menjadi satu pembimbing minithesis saya bersama pak aris nurhindarto, bu sari wijayanti … waduh .. dulu awal kuliah bener2 galak bu sari .. eh tapi ternyata bu sari baik dan sangat perhatian terhadap mahasiswi dan mahasiswanya bukan bgitu bu sari…. dan semuanya takkan kusebut satu2 per satu. OK semarang jasamu di dalam diri ini tidak akan kulupakan …. .hiks … smangat 

// rgesit@gmail.com
// Under graduated from Universitas Dian Nuswantoro Semarang
// terima kasih atas civitas akademika udinus dan teman2 sekalian smuanya deh
// Ku Berusaha Bersyukur di Bawah langitMU YA ALLAH
// Depok, November 20,  2007

 require "server.php";

 $sql ="select * from images";
 //$query= pg_query($koneksi,$sql);
 $query= pg_exec($koneksi,$sql);
 //$row = pg_num_rows($query);
 $row = pg_numrows($query);
 if($query)
     echo "sukses";
     $for($i=0;$i<$row;$i++){
   $rgrow = pg_fetch_array($query, $i, PGSQL_ASSOC);
     echo "nama masnya : ".$rgow[‘nama’]."";
     //add
     echo ;
 else
     echo "gagal";
 ?>

 

Silahkan Komentar bagi temandan rekan2 seperjuangan dalam kehidupan di semarang atau dimanasaja
semarang Aku Takkan Melupakanmu

Kesederhanaanmu…
 Keindahanmu ..
  Keragamanmu ..
   Ketenanganmu …
    jangan kotori semarang kita dan indonesia

tertanda

"Sempet" be Semarang People
KTP Licenced :)

R. Gesit Prasasti Alam


Get Dollar And Check Your Account (Click For Join)
Free Transfer Dollars to Your HomeTown (Click For Transfer)

As deployment of XML data and web services becomes more widespread, you may occasionally find it convenient to connect an HTML presentation directly to XML data for interim updates without reloading the page. Thanks to the little-known XMLHttpRequest object, an increasing range of web clients can retrieve and submit XML data directly, all in the background. To convert retrieved XML data into renderable HTML content, rely on the client-side Document Object Model (DOM) to read the XML document node tree and compose HTML elements that the user sees.

History and Support

Microsoft first implemented the XMLHttpRequest object in Internet Explorer 5 for Windows as an ActiveX object. Engineers on the Mozilla project implemented a compatible native version for Mozilla 1.0 (and Netscape 7). Apple has done the same starting with Safari 1.2.

Similar functionality is covered in a proposed W3C standard, Document Object Model (DOM) Level 3 Load and Save Specification. In the meantime, growing support for the XMLHttpRequest object means that is has become a de facto standard that will likely be supported even after the W3C specification becomes final and starts being implemented in released browsers (whenever that might be). Read More…


Get Dollar And Check Your Account (Click For Join)
Free Transfer Dollars to Your HomeTown (Click For Transfer)
Filed under: General

Regular Expression biasa digunakan bersamaan dengan java script sehingga berjalan di client side untuk mengecek inputan dari user sehingga hal ini dapat mengurangi beban kerja server.

Berikut ini merupakan karakter yang digunakan didalam Regular Expression :

  • general escape character with several uses
  • assert start of subject (or line, in multiline mode)
  • $ assert end of subject (or line, in multiline mode)
  • . match any character except newline (by default)
  • [ start character class definition
  • ] end character class definition
  • | start of alternative branch
  • ( start subpattern
  • ) end subpattern
  • ? extends the meaning of (, also 0 or 1 quantifier, also quantifier minimizer
  • * 0 or more quantifier
  • + 1 or more quantifier
  • { start min/max quantifier
  • } end min/max quantifier
  • general escape character
  • negate the class, but only if the first character
  • - indicates character range
  • ] terminates the character class
  • a alarm, that is, the BEL character (hex 07)
  • cx “control-x”, where x is any character
  • e escape (hex 1B)
  • f formfeed (hex 0C)
  • n newline (hex 0A)
  • r carriage return (hex 0D)
  • t tab (hex 09)
  • xhh character with hex code hh
  • ddd character with octal code ddd, or backreference
  • 40 is another way of writing a space
  • 40 is the same, provided there are fewer than 40 previous capturing subpatterns
  • 7 is always a back reference
  • 11 might be a back reference, or another way of writing a tab
  • 11 is always a tab
  • 113 is a tab followed by the character “3″
  • 113 is the character with octal code 113 (since there can be no more than 99 back references)
  • 377 is a byte consisting entirely of 1 bits
  • 81 is either a back reference, or a binary zero followed by the two characters “8″ and “1″
  • d any decimal digit
  • D any character that is not a decimal digit
  • s any whitespace character
  • S any character that is not a whitespace character
  • w any “word” character
  • W any “non-word” character
  • b word boundary
  • B not a word boundary
  • A start of subject (independent of multiline mode)
  • Z end of subject or newline at end (independent of multiline mode)
  • z end of subject(independent of multiline mode)

Contoh penggunaan Regular Expression adalah sebagai berikut :

  • untuk mengecek format email
    a-z0-9_]|\-|\.)+@(([a-z0-9_]|\-)+\.)+[a-z]{2,4}$
  • Untuk mengecek format url
    /http://w+.\w+.\w+/


Get Dollar And Check Your Account (Click For Join)
Free Transfer Dollars to Your HomeTown (Click For Transfer)

    

Your Ad Here

            Regards,


            R.Gesit Prasasti Alam


® Free Design and Templates On Your Blog :)