Friday, May 22, 2009

INTRODUCTION PHP

INTRODUCTION PHP
PHP is a scripting language that integrates with the HTML and run on the server side. This means that all the syntax that we provide will be fully executed on the server while the browser is sent to the result only.
File contoh1.php:


<br />Simple Example <br /></ title> <br /></ head> <br /><body> <br /><? php <br />echo ( "Hallo apakabar? My name is PHP script"); <br />?> <br /></ body> <br /></ html> <br />Variable <br />PHP in the name of each variable beginning dollar sign ($). For example the name of a variable in PHP is written with the $ a. Type of a variable is determined at the time of the road program and depending on the context used. <br />File contoh2.php: <br /><? php <br />$ a = "5"; <br />$ b = "2"; <br />$ result = $ a + $ b; <br />echo ($ result); <br />?> <br />STRUCTURE Control <br />IF <br />IF construction is used to perform the execution of a conditional statement. <br />How is written as follows: <br />if (condition) <br />( <br />statement <br />) <br />or: <br />if (condition) <br />( <br />statement <br />) <br />else <br />( <br />another statement <br />) <br />or: <br />if (first condition) <br />( <br />The first statement <br />) <br />elseif (both terms) <br />( <br />second statement <br />) <br />else <br />( <br />another statement <br />) <br />File contoh5.php: <br /><? php <br />$ a = 4; <br />$ b = 9; <br />if ($ a> $ b) <br />( <br />echo ( "a is greater than in b"); <br />) <br />elseif ($ a <$ b) <br />( <br />echo ( "a small b"); <br />) <br />else <br />( <br />echo ( "a with the b"); <br />) <br />?> <br />While <br />Form the basis of the While statement is as follows: <br />while (condition) <br />( <br />statement <br />) <br />While the meaning of statemant is to give the command to execute the statement <br />underneath are repeated, during the condition fulfilled. <br />File contoh6.php: <br /><? php <br />$ a = 1; <br />while ($ a <10) <br />( <br />echo ($ a); <br />$ a + +; <br />) <br />?> <br />FOR <br />How to write FOR statement is as follows: <br />for (ekspresi1; ekspresi2; ekspresi3) <br />statement <br />ekspresi1 initial value for a variable <br />ekspresi2 shows the requirements that must be met to run statemant <br />ekspresi3 show value-added to a variable <br />File contoh7.php: <br /><? php <br />for ($ a = 0; $ a <10; $ a + +) <br />( <br />echo ( "A = value"); <br />echo ( "$ a"); <br />echo ( "<br>"); <br />) <br />?> <br />SWITCH <br />SWITCH statement is used to compare a variable with some <br />value and the statement if the value of certain variables with the same value <br />compared. <br />Switch structure is as follows: <br />switch (variable) <br />case value: <br />statement <br />case value: <br />statemant <br />case value: <br />statement <br />. <br />. <br />. <br />File contoh8.php: <br /><? php <br />$ a = 2; <br />switch ($ a) <br />( <br />case 1: <br />echo ( "Value is a variable one"); <br />break; <br />case 2: <br />echo ( "Value is a two-variable"); <br />break; <br />case 3: <br />echo ( "Value is a three-variable"); <br />break; <br />) <br />?> <br />Require <br />Require statement is used to read the variable value and function of a file. How to write Require statement is: <br />require (filename); <br />Require this statement can not be entered diadalam a looping structure such as while or for. Because only pemangggilan the same file only once. <br />File contoh9.php: <br /><? php <br />$ a = "I'm learning PHP"; <br />tulistebal function ($ text) <br />( <br />echo ( "<b> $ text </ b>"); <br />) <br />?> <br />File contoh10.php: <br /><? php <br />require ( "contoh9.php"); <br />tulistebal ( "This is a bold any posts"); <br />echo ( "<br>"); <br />echo ($ a); <br />?> <br />Include <br />Include statement will include the content of a particular file. Include can be put <br />eg in a looping in a for or while statement. <br />File contoh11.php: <br /><? php <br />echo ("-------------< br> "); <br />echo ( "PHP is a scripting language <br>"); <br />echo ("-------------< br> "); <br />echo ( "<br>"); <br />?> <br />File contoh12.php: <br /><? php <br />for ($ b = 1; $ b <5; $ b + +) <br />( <br />include ( "contoh11.php"); <br />) <br />?> <div style='clear:both;'></div> <div class='post-share-buttons'> <a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=5268628345988877796&postID=951279203302116417&target=email' target='_blank' title='Email This'><span class='share-button-link-text'>Email This</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=5268628345988877796&postID=951279203302116417&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='BlogThis!'><span class='share-button-link-text'>BlogThis!</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=5268628345988877796&postID=951279203302116417&target=twitter' target='_blank' title='Share to X'><span class='share-button-link-text'>Share to X</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=5268628345988877796&postID=951279203302116417&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Share to Facebook'><span class='share-button-link-text'>Share to Facebook</span></a> </div> <span class='reaction-buttons'> </span> <div style='clear: both;'></div> </div> <footer class='nbtentry-meta'> <span class='nbtpost-date'>Friday, May 22, 2009</span><span class='nbtbyline'><span>Anonymous</span></span><span class='nbttags-links'><a href='https://techalexa.blogspot.com/search/label/pemrogramman' rel='tag'>pemrogramman</a></span><span class='nbtcomments-link'><a href='https://techalexa.blogspot.com/2009/05/introduction-php.html#comment-form' onclick=''>No comments</a></span> </footer> <div class='related-postbwrap' id='bpostrelated-post'></div> <div style='clear: both;'></div> <script type='text/javascript'> var labelArray = [ "pemrogramman" ]; var relatedPostConfig = { homePage: "https://techalexa.blogspot.com/", widgetTitle: "<h4>Related Posts:</h4>", numPosts: 5, summaryLength: 225, titleLength: "auto", thumbnailSize: 80, noImage: "http://3.bp.blogspot.com/-Mw0JztDoSZc/VoD0IXLoxBI/AAAAAAAACFk/VJkHSEOGjyY/s000/no-img.png", containerId: "bpostrelated-post", newTabLink: false, moreText: "Read More", widgetStyle: 2, callBack: function() {} }; </script> <script type='text/javascript'> //<![CDATA[ /*! Related Post Widget for Blogger by Taufik Nurrohman => http://gplus.to/tovic */ var randomRelatedIndex,showRelatedPost;(function(n,m,k){var d={widgetTitle:"<h4>Artikel Terkait:</h4>",widgetStyle:1,homePage:"http://www.dte.web.id",numPosts:7,summaryLength:370,titleLength:"auto",thumbnailSize:72,noImage:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAA3NCSVQICAjb4U/gAAAADElEQVQImWOor68HAAL+AX7vOF2TAAAAAElFTkSuQmCC",containerId:"related-post",newTabLink:false,moreText:"Baca Selengkapnya",callBack:function(){}};for(var f in relatedPostConfig){d[f]=(relatedPostConfig[f]=="undefined")?d[f]:relatedPostConfig[f]}var j=function(a){var b=m.createElement("script");b.type="text/javascript";b.src=a;k.appendChild(b)},o=function(b,a){return Math.floor(Math.random()*(a-b+1))+b},l=function(a){var p=a.length,c,b;if(p===0){return false}while(--p){c=Math.floor(Math.random()*(p+1));b=a[p];a[p]=a[c];a[c]=b}return a},e=(typeof labelArray=="object"&&labelArray.length>0)?"/-/"+l(labelArray)[0]:"",h=function(b){var c=b.feed.openSearch$totalResults.$t-d.numPosts,a=o(1,(c>0?c:1));j(d.homePage.replace(/\/$/,"")+"/feeds/posts/summary"+e+"?alt=json-in-script&orderby=updated&start-index="+a+"&max-results="+d.numPosts+"&callback=showRelatedPost")},g=function(z){var s=document.getElementById(d.containerId),x=l(z.feed.entry),A=d.widgetStyle,c=d.widgetTitle+'<ul class="related-post-style-'+A+'">',b=d.newTabLink?' target="_blank"':"",y='<span style="display:block;clear:both;"></span>',v,t,w,r,u;if(!s){return}for(var q=0;q<d.numPosts;q++){if(q==x.length){break}t=x[q].title.$t;w=(d.titleLength!=="auto"&&d.titleLength<t.length)?t.substring(0,d.titleLength)+"…":t;r=("media$thumbnail" in x[q]&&d.thumbnailSize!==false)?x[q].media$thumbnail.url.replace(/\/s[0-9]+(\-c)?/,"/s"+d.thumbnailSize+"-c"):d.noImage;u=("summary" in x[q]&&d.summaryLength>0)?x[q].summary.$t.replace(/<br ?\/?>/g," ").replace(/<.*?>/g,"").replace(/[<>]/g,"").substring(0,d.summaryLength)+"…":"";for(var p=0,a=x[q].link.length;p<a;p++){v=(x[q].link[p].rel=="alternate")?x[q].link[p].href:"#"}if(A==2){c+='<li><img alt="" class="related-post-item-thumbnail" src="'+r+'" width="'+d.thumbnailSize+'" height="'+d.thumbnailSize+'"><a class="related-post-item-title" title="'+t+'" href="'+v+'"'+b+">"+w+'</a><span class="related-post-item-summary"><span class="related-post-item-summary-text">'+u+'</span> <a href="'+v+'" class="related-post-item-more"'+b+">"+d.moreText+"</a></span>"+y+"</li>"}else{if(A==3||A==4){c+='<li class="related-post-item" tabindex="0"><a class="related-post-item-title" href="'+v+'"'+b+'><img alt="" class="related-post-item-thumbnail" src="'+r+'" width="'+d.thumbnailSize+'" height="'+d.thumbnailSize+'"></a><div class="related-post-item-tooltip"><a class="related-post-item-title" title="'+t+'" href="'+v+'"'+b+">"+w+"</a></div>"+y+"</li>"}else{if(A==5){c+='<li class="related-post-item" tabindex="0"><a class="related-post-item-wrapper" href="'+v+'" title="'+t+'"'+b+'><img alt="" class="related-post-item-thumbnail" src="'+r+'" width="'+d.thumbnailSize+'" height="'+d.thumbnailSize+'"><span class="related-post-item-tooltip">'+w+"</span></a>"+y+"</li>"}else{if(A==6){c+='<li><a class="related-post-item-title" title="'+t+'" href="'+v+'"'+b+">"+w+'</a><div class="related-post-item-tooltip"><img alt="" class="related-post-item-thumbnail" src="'+r+'" width="'+d.thumbnailSize+'" height="'+d.thumbnailSize+'"><span class="related-post-item-summary"><span class="related-post-item-summary-text">'+u+"</span></span>"+y+"</div></li>"}else{c+='<li><a title="'+t+'" href="'+v+'"'+b+">"+w+"</a></li>"}}}}}s.innerHTML=c+="</ul>"+y;d.callBack()};randomRelatedIndex=h;showRelatedPost=g;j(d.homePage.replace(/\/$/,"")+"/feeds/posts/summary"+e+"?alt=json-in-script&orderby=updated&max-results=0&callback=randomRelatedIndex")})(window,document,document.getElementsByTagName("head")[0]); //]]> </script> </article> <div style='clear: both;'></div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='https://techalexa.blogspot.com/2009/05/term-term-in-internet.html' id='Blog1_blog-pager-newer-link' title='Newer Post'>← Newer Post</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='https://techalexa.blogspot.com/2010/07/launching-online-store.html' id='Blog1_blog-pager-older-link' title='Older Post'>Older Post →</a> </span> <a class='home-link' href='https://techalexa.blogspot.com/'>Home</a> </div> <div class='clear'></div> <div class='comments' id='comments'> <a name='comments'></a> <h4> 0 Komentar: </h4> <div id='Blog1_comments-block-wrapper'> <dl class='avatar-comment-indent' id='comments-block'> </dl> </div> <p class='comment-footer'> <div class='comment-form'> <a name='comment-form'></a> <h4 id='comment-post-message'>Post a Comment</h4> <p> </p> <a href='https://www.blogger.com/comment/frame/5268628345988877796?po=951279203302116417&hl=en' id='comment-editor-src'></a> <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410' id='comment-editor' name='comment-editor' src='' width='100%'></iframe> <!--Can't find substitution for tag [post.friendConnectJs]--> <script src='https://www.blogger.com/static/v1/jsbin/2315299244-comment_from_post_iframe.js' type='text/javascript'></script> <script type='text/javascript'> BLOG_CMT_createIframe('https://www.blogger.com/rpc_relay.html', '0'); </script> </div> </p> <div id='backlinks-container'> <div id='Blog1_backlinks-container'> </div> </div> </div> </div> </div></div> <!--Can't find substitution for tag [adEnd]--> </div> <div style='clear: both;'></div> </div></div> </div><!-- #main --> </div><!-- #primary --> <div class='bwrapwidget-area' id='secondarybwrap' role='complementary'> <div class='sidebarbtop section' id='sidebarbtop'><div class='widget PopularPosts' data-version='1' id='PopularPosts1'> <h2>Popular Posts</h2> <div class='widget-content popular-posts'> <ul> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://techalexa.blogspot.com/2010/09/cheat-point-blank-gb-exp-with-rpe.html' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9GmSU7K9pHqVuzHnlaVgJ26rCe-JQXWyYKftjA6TwmsrvGBoZ_6FP4hVlqgFjw80Qh59XPyho1TCN537mekqmJK5cX6l_To_uWYf1IaZFIM3OEa4DcXSEPWKkVJyORucz0BbNqWsxmJU/s72-c/_pointblank1.jpg' width='72'/> </a> </div> <div class='item-title'><a href='https://techalexa.blogspot.com/2010/09/cheat-point-blank-gb-exp-with-rpe.html'>Cheat Point Blank GB EXP With RPE</a></div> <div class='item-snippet'>Yesterday I had to give the cheat Point Blank , too, but this time I will give you the cheat again. I really do not love the game but the wo...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://techalexa.blogspot.com/2011/01/cheat-ninja-saga-ns-january-4-2011-1.html' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjvQQtD46ew5676kHXT1bU3khj-BY36kLhN7kUA8cVbfMNHIJLi0ehtVRbqfCZ-owmBAlhmCOrQgbgzEzOXhiEBXKjM5jS4Npf2SviW9apucrzH3BRCO1ul-EZGv_QLrwwZiGOjvgEQdTs/s72-c/ninja-saga-facebook.jpg' width='72'/> </a> </div> <div class='item-title'><a href='https://techalexa.blogspot.com/2011/01/cheat-ninja-saga-ns-january-4-2011-1.html'>Cheat Ninja Saga NS January 4, 2011 1 hit kill one new boss</a></div> <div class='item-snippet'>Cheat Ninja Saga NS January 4, 2011 one new boss 1 hit kill 4,012,011.  Are you fond of Ninjas and action packed flash games involving chakr...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://techalexa.blogspot.com/2011/03/javahostindo-web-hosting-indonesia.html'>Javahostindo Web Hosting Indonesia</a></div> <div class='item-snippet'>Javahostindo adalah sebuah perusahan yang berdiri sebagai perusahaan yang menyediakan layanan jasa Web Hosting Indonesia yang sangat berku...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://techalexa.blogspot.com/2013/04/sejarah-internet-mulai-awal-sampai.html' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVXaLL7BQ2LNjCy_sv7eaWPhGMdmr4R45OXNPNitu7fXOay0fB-SHqgkIg-Azyynx-_NXbhmfk93ANocuIk1PFAkRwsqlRM8TfQYyt8sde5Zd769VwL_wEAjWwx6jn7bOvGCDuc8xiGDQ/s72-c/search-engine-.jpg' width='72'/> </a> </div> <div class='item-title'><a href='https://techalexa.blogspot.com/2013/04/sejarah-internet-mulai-awal-sampai.html'>Sejarah Internet Mulai Awal Sampai Sekarang </a></div> <div class='item-snippet'> Sejarah Internet Mulai Awal Sampai Sekarang  Selamat siang sobat ACW sudah lama banget admin ACW tidak pernah posting, sebanarnya siech...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://techalexa.blogspot.com/2010/11/cheat-point-blank-pb-x-lonzrepack.html' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEittqJwqAou8RE9peFrs0KakrYLYZpKK2DkXMvcXKyUs4ArWcr8NswEuutcEVNrOxaoSfZujECu_vFn1tT8A4lZvxtwuUn6ABjxzBVzm0kAGenDvcF4iGCDsLPXTkUGLlxbAFtLK497DvU/s72-c/point+blank+USER+N+PASS.jpg' width='72'/> </a> </div> <div class='item-title'><a href='https://techalexa.blogspot.com/2010/11/cheat-point-blank-pb-x-lonzrepack.html'>Cheat Point Blank (PB) X-LoNz_Repack Update November 4, 2010</a></div> <div class='item-snippet'>A very beautiful morning it was happy the Cheaters mania all over the world because at present there is also a new cheat for point blank tha...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://techalexa.blogspot.com/2011/02/free-download-artav-antivirus-26.html' target='_blank'> <img alt='' border='0' height='72' src='//2.bp.blogspot.com/_EW2NGYbV-fM/TRH88lEUY5I/AAAAAAAAAIw/r0mx6RsqWRw/s72-c/Untitled-1+copdy.png' width='72'/> </a> </div> <div class='item-title'><a href='https://techalexa.blogspot.com/2011/02/free-download-artav-antivirus-26.html'>Free Download ARTAV Antivirus 2.6</a></div> <div class='item-snippet'> Released: 17 February 2011 Creator: arrival88 (Arrival Dwi Sentosa) Greetz to: [*] Allah SWT                                  [*] Nyit-N...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://techalexa.blogspot.com/2010/12/cheat-ninja-saga-ns-permanent-gold-npc.html' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj-O8k9_nkW6A0GWpCDiow6hRZwqwAHYiJZKX9Nnm2ay9payMCEWF4_NjVN0QgnzDugkSocORkndrLHRowIeJ6PK7PE5X-GerVK1sImhAjz02JiqK-Ya2LlA0-1csZY8Wzn1rJtLev7Xms/s72-c/ninjasagatitle_by_www.alexa-com.co.cc.jpg' width='72'/> </a> </div> <div class='item-title'><a href='https://techalexa.blogspot.com/2010/12/cheat-ninja-saga-ns-permanent-gold-npc.html'>Cheat Ninja Saga (NS) Permanent Gold, NPC, Hounting House Update December 5, 2010</a></div> <div class='item-snippet'> Cheat NPC If the NPC to invite your friends how to use 2 continued mission failed level 1 will immediately and directly so that you recru...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://techalexa.blogspot.com/2009/12/ayu-oktasari-film-actor-and-model-porn.html' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_TNg38KB6eLo5lY6J7yAtznplpVR0TY_Iw9cQCwysoSCmQxlVp39RUx0MgaXOMgfoPvYu8HXBV5NHy32R9n2NtGoqKREY5EMo9TybOVgsoz9r71d45lN2Auxd96MawZpjPNSxJN2JdHg/s72-c/ayu-oktasari-5.jpg' width='72'/> </a> </div> <div class='item-title'><a href='https://techalexa.blogspot.com/2009/12/ayu-oktasari-film-actor-and-model-porn.html'>ayu oktasari a film actor and model porn</a></div> <div class='item-snippet'> Infections winner take you out first to Indonesia which was broadcast by one of stasius private television in Indonesia. recent rumors that...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://techalexa.blogspot.com/2011/08/cheat-special-jounin-stage-6-chapter-3.html' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsANfKUFvPcgHzyACv9jE1vxoFkbX1HoPW7nlMVWdUnU1DF2TCBHTtXkdF-eD923FQnUfnyMssSMF-IPOLhmTiDXOdPMKILzzaA4liUNurNEMFfSWDd6TjhFiiNz6r9u1F8b48-oaXuhY/s72-c/special+jounin.jpg' width='72'/> </a> </div> <div class='item-title'><a href='https://techalexa.blogspot.com/2011/08/cheat-special-jounin-stage-6-chapter-3.html'>Cheat Special Jounin Stage 6 Chapter 3 Ninja Saga Update August, 6 2011</a></div> <div class='item-snippet'> After yesterday I posted about the Ninja Saga ( NS ) Instant Mission Stage 6 Chapter 2 to 4 August 2011 , on this occasion I will update th...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://techalexa.blogspot.com/2011/11/premiumsoft-navicat-premium-enterprise.html' target='_blank'> <img alt='' border='0' height='72' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDZQ2l-daamEsXzYAsvIJoHJBJRMw5FjhpauRiErVlykwjjnizW5LKmwB-We1hS4sHI_ic-CLAvcJv6vN0JMgsr2VIJElQHxdNVD1b-S7rWpMyd4eyYpm6mwJW1KhJ9rrbzT3a1JmfQ7s/s72-c/f1d3qq.gif' width='72'/> </a> </div> <div class='item-title'><a href='https://techalexa.blogspot.com/2011/11/premiumsoft-navicat-premium-enterprise.html'>PremiumSoft Navicat Premium Enterprise 10.0.3</a></div> <div class='item-snippet'>PremiumSoft Navicat Premium Enterprise 10.0.3 | 31.67 MB Navicat Premium is a multi-connections Database Administration tool allowing you ...</div> </div> <div style='clear: both;'></div> </li> </ul> <div class='clear'></div> </div> </div> <div class='widget PageList' data-version='1' id='PageList8'> <div class='widget-content'> <ul id='nav'> <li><a href='https://techalexa.blogspot.com/'>Home</a></li> <li><a href='http://www.alexa-com.net/2006/01/about-alexa-com-weblog.html'>About</a></li> <li><a href='http://www.alexa-com.net/2007/07/contact-us.html'>Contact Us</a></li> <li><a href='http://www.alexa-com.net/2005/02/privacy-policy.html'>Privacy Policy</a></li> <li><a href='http://www.alexa-com.net/2006/01/sitemap.html'>SiteMap</a></li> <li><a href='http://www.alexa-com.net/2006/02/donation.html'>Donation</a></li> </ul> <div class='clear'></div> </div> </div></div> </div><!-- #secondary --> </div><!-- #content --> <div class='secondary-navigation'> <div class='menu-footer-container'> <div class='nbttopmenutop no-items section' id='nbttopmenutop'> </div> </div> </div> <footer class='site-footer' id='colophon' role='contentinfo'> <div class='site-info'> <!-- Do not edit or remove credits without our permission: btemplates.com/author/new-blogger-themes --> Copyright © <script type='text/javascript'>var creditsyear = new Date();document.write(creditsyear.getFullYear());</script> <a href='https://techalexa.blogspot.com/'>Alexa-com Weblog</a> | Powered by <a href='http://www.blogger.com/'>Blogger</a><br/>Design by <a href='http://automattic.com/' target='_blank'>Automattic</a> | Blogger Theme by <a href='http://btemplates.com/author/new-blogger-themes/' rel='nofollow' target='_blank' title='NewBloggerThemes.com'>NewBloggerThemes.com</a> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <script type='text/javascript'> //<![CDATA[ jQuery(document).ready(function($) { function navMenu() { var sidebarToggle = $('#sidebar-toggle'); var menuToggle = $('#menu-toggle'); var socialLinksToggle = $('#social-links-toggle'); var searchToggle = $('#search-toggle'); var socialLinksNav = $('#social-links-toggle-nav'); var sidebarNav = $('#sidebar-toggle-nav'); var searchNav = $('#search-toggle-nav'); var menuNav = $('#menu-toggle-nav'); function myToggleClass( $myvar ) { if ( $myvar.hasClass( 'active' ) ) { $myvar.removeClass( 'active' ); } else { $myvar.addClass('active'); } } // Display/hide sidebar sidebarToggle.on('click', function() { sidebarNav.slideToggle(); myToggleClass($(this)); socialLinksNav.hide(); menuNav.hide(); searchNav.hide(); searchToggle.removeClass('active'); menuToggle.removeClass('active'); socialLinksToggle.removeClass('active'); }); // Display/hide social links socialLinksToggle.on('click', function() { socialLinksNav.slideToggle(); myToggleClass($(this)); menuNav.hide(); searchNav.hide(); sidebarNav.hide(); searchToggle.removeClass('active'); menuToggle.removeClass('active'); sidebarToggle.removeClass('active'); }); // Display/hide menu menuToggle.on('click', function() { menuNav.slideToggle(); myToggleClass($(this)); searchNav.hide(); sidebarNav.hide(); socialLinksNav.hide(); searchToggle.removeClass('active'); sidebarToggle.removeClass('active'); socialLinksToggle.removeClass('active'); }); // Display/hide search searchToggle.on('click', function() { searchNav.slideToggle(); myToggleClass($(this)); sidebarNav.hide(); socialLinksNav.hide(); menuNav.hide(); sidebarToggle.removeClass('active'); menuToggle.removeClass('active'); socialLinksToggle.removeClass('active'); }); } $(window).on('load', navMenu); } ); //]]> </script> <script type='text/javascript'> //<![CDATA[ ( function() { var is_webkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1, is_opera = navigator.userAgent.toLowerCase().indexOf( 'opera' ) > -1, is_ie = navigator.userAgent.toLowerCase().indexOf( 'msie' ) > -1; if ( ( is_webkit || is_opera || is_ie ) && 'undefined' !== typeof( document.getElementById ) ) { var eventMethod = ( window.addEventListener ) ? 'addEventListener' : 'attachEvent'; window[ eventMethod ]( 'hashchange', function() { var element = document.getElementById( location.hash.substring( 1 ) ); if ( element ) { if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) element.tabIndex = -1; element.focus(); } }, false ); } })(); //]]> </script> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/91768132-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY5FLqyNQX_Cn7qzc1KY8EiHyqdlmQ:1736585719321';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d5268628345988877796','//techalexa.blogspot.com/2009/05/introduction-php.html','5268628345988877796'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '5268628345988877796', 'title': 'Alexa-com Weblog', 'url': 'https://techalexa.blogspot.com/2009/05/introduction-php.html', 'canonicalUrl': 'https://techalexa.blogspot.com/2009/05/introduction-php.html', 'homepageUrl': 'https://techalexa.blogspot.com/', 'searchUrl': 'https://techalexa.blogspot.com/search', 'canonicalHomepageUrl': 'https://techalexa.blogspot.com/', 'blogspotFaviconUrl': 'https://techalexa.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': 'UA-18275071-1', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Alexa-com Weblog - Atom\x22 href\x3d\x22https://techalexa.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Alexa-com Weblog - RSS\x22 href\x3d\x22https://techalexa.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Alexa-com Weblog - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/5268628345988877796/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Alexa-com Weblog - Atom\x22 href\x3d\x22https://techalexa.blogspot.com/feeds/951279203302116417/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-1883875810542838', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/d2c988fc3a56b1b1', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': true, 'jumpLinkMessage': 'Baca selengkapnya \xbb', 'pageType': 'item', 'postId': '951279203302116417', 'pageName': 'INTRODUCTION PHP', 'pageTitle': 'Alexa-com Weblog: INTRODUCTION PHP', 'metaDescription': ''}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'INTRODUCTION PHP', 'description': 'A blog about Computer Network and Technology Information World.', 'url': 'https://techalexa.blogspot.com/2009/05/introduction-php.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 951279203302116417}}]); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'headersec', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList9', 'pagesmenuwidget', document.getElementById('PageList9'), {'title': 'Pages - Menu', 'links': [{'isCurrentPage': false, 'href': 'http://techalexa.blogspot.com/', 'title': 'Home'}, {'isCurrentPage': false, 'href': 'https://mediakampung.com/', 'title': 'Media Kampung'}], 'mobile': false, 'showPlaceholder': true, 'hasCurrentPage': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'panelbwrapwidget2', document.getElementById('HTML3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'panelbwrapwidget3', document.getElementById('HTML4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'mainblogsec', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/599103511-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/1964470060-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts1', 'sidebarbtop', document.getElementById('PopularPosts1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList8', 'sidebarbtop', document.getElementById('PageList8'), {'title': 'Pages - Menu', 'links': [{'isCurrentPage': false, 'href': 'https://techalexa.blogspot.com/', 'title': 'Home'}, {'isCurrentPage': false, 'href': 'http://www.alexa-com.net/2006/01/about-alexa-com-weblog.html', 'title': 'About'}, {'isCurrentPage': false, 'href': 'http://www.alexa-com.net/2007/07/contact-us.html', 'title': 'Contact Us'}, {'isCurrentPage': false, 'href': 'http://www.alexa-com.net/2005/02/privacy-policy.html', 'title': 'Privacy Policy'}, {'isCurrentPage': false, 'href': 'http://www.alexa-com.net/2006/01/sitemap.html', 'title': 'SiteMap'}, {'isCurrentPage': false, 'href': 'http://www.alexa-com.net/2006/02/donation.html', 'title': 'Donation'}], 'mobile': false, 'showPlaceholder': true, 'hasCurrentPage': false}, 'displayModeFull')); </script> </body> </html>