Friday, May 22, 2009

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> </div> <div class='titlemeta clearfix'> <div class='categori'>Categories: <a href='http://techalexa.blogspot.com/search/label/pemrogramman' rel='tag'>pemrogramman</a></div> </div> <div class='clear'></div> </div> <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='http://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='http://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='http://techalexa.blogspot.com/'>Home</a> </div> <div class='clear'></div> <div class='comments' id='comments'> <a name='comments'></a> <h4> 0 Comments: </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 class='post-feeds'> <div class='feed-links'> Subscribe to: <a class='feed-link' href='http://techalexa.blogspot.com/feeds/951279203302116417/comments/default' target='_blank' type='application/atom+xml'>Post Comments (Atom)</a> </div> </div> </div></div> </div> </div> <div class='span-8 last'> <div id='subscriptions'> <a href='http://feeds.feedburner.com/alexa-com'><img alt='Subscribe to RSS Feed' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjktvgeWYNNb2Ke-RwCK7C77d3dLUBQrG0Nn4gwxw783jSpd2RhglyMWLCIipUmbsM20qCwO8u9bXnYnjMdd9UxWu4WFM_3aYTwKovqnnS-V_Iq9TSMURA_9-qaUg0YfKDAlEPE_xqvLyqZ/s0/rss.png' title='Subscribe to RSS Feed'/></a> <a href='http://twitter.com/alexaprayogo' title='Follow me on Twitter!'><img alt='Follow me on Twitter!' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhzEeK2aFIP7_Q50iQDBQpVqVEWjxIp9LlynBuD2mBWagRRSYrPx7rDTo_U23lqURJHq2izTEZTH27ukSmtrTOF-c4ac08mpg1sUnE0QmBykj4ZJ-aKdQV52yqkR_i1QuGXTSAxY8S2cOid/s0/twitter.png' title='Follow me on Twitter!'/></a> </div> <div id='sidebar'> <div id='search'> <div class='searchlayout'> <form action='http://techalexa.blogspot.com/search/' id='searchform' method='get'> <input id='s' name='q' onblur='if (this.value == '') {this.value = 'Search';}' onfocus='if (this.value == 'Search') {this.value = '';}' type='text' value='Search'/> <input src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8B6YAneXaHbgg_XJdwUER5nCx07DSMNyvN8-KgIZeqC20dLjqw9iSDNzp3fDXh7m2hPpwUPJ40N-qLrPjrQ_y8wao10FKlvGCM8rakE-YWX6WYvE6a1fORCQJ_FwzL7sUN1vSzN4sKBNt/s0/search.gif' style='border:0; vertical-align: top;' type='image'/> </form> </div> </div> <div class='addthis_toolbox'> <div class='custom_images'> <a class='addthis_button_twitter'><img alt='Twitter' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQRBx5MAlpZie4COGUpQy-gsGd0vpXDCEzYmR0Zp_MyMY2cvIJAoHkXZ6dfUTLQRYHGM6LLy2Y6PP9gCf78yts6EfDNHDH5NNm05mRDas4dvVP5ew_cvvHsnbIVT3FA9vqhxmRpEcAy2U/s0/twitter.png' width='32'/></a> <a class='addthis_button_delicious'><img alt='Delicious' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjczV6_dBg6WLI1TEZbXM62ZZwYL-xcUFZ4XAaD7xjCq3sVAh3ckY6QhVLykX4sOR9OUTodFxyKlQSOav4zGZCyzO3NL81pY8XoNeVTIW_3BvU-G40-VkdF0ZvMr5Q1-6r8p6lKs3S7vpgv/s0/delicious.png' width='32'/></a> <a class='addthis_button_facebook'><img alt='Facebook' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVsOhSN1xhoGDy6r-ZxkY4jU8LylZXWZRv9w2jW2p1JuDG9qmmkX4SGaRDuwbBImyLXRsMCz1bZZPJzYiy3HeBCxHjEE64OlyaIS_ITTfvzhHt5Nzg5vaRj4a4SheFmYBXIIbHw_JK7pyN/s0/facebook.png' width='32'/></a> <a class='addthis_button_digg'><img alt='Digg' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjnIyaoCWoBLOLrybLjodE3UNl1xNUY0ZbXHyL3-BQDZpvbExqDq7KE3_yJ8C63NZgfOby9AJ1BNOOk7VF0nb7aQA22-EXxnUbAm8iSaSydqvJRtjEf9oavczMxHGQ0YXI79ifJdP5OToWs/s0/digg.png' width='32'/></a> <a class='addthis_button_stumbleupon'><img alt='Stumbleupon' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinVQWQBf5OfWmvzJDr4yy-4muQ9j52L2fvHiBPVR9bfBPyj9mjy1jR6TQdbydifxfmZQy0bqmgJbFbbCAwtXMU_vVkmZGIAjZJm_Ngl_DCTuQsxYfylQ-0eB4SBwZ5csFGbOVE_EkHSErB/s0/stumbleupon.png' width='32'/></a> <a class='addthis_button_favorites'><img alt='Favorites' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEghKE9Bzb-lcQskjttLpIFKVNZyogY47oza4OmUsIcG1YjzwlzHq22m-c0R2E1WsSAO6az4SuOhpMx9q2xh8w3RN-R5fRxZ7C3oDmYOF0toNnMIWqVotn92iIFK_IaGwYV_P2kvR7r4Qr5x/s0/favorites.png' width='32'/></a> <a class='addthis_button_more'><img alt='More' height='32' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiF_b6vEd1h5mUJq9upbAh7x6J0kScQPQOFXTUNMDy7lDizyi4KIQR_GUkQXmFQ7UKAUluASiTC0r-0O3-LzBKcnrs03AeeLBTeDSH8WLNUMvlBTUGETWUh7sAeeV0e3a3cmCSOLwuGDVNk/s0/more.png' width='32'/></a> </div> <script src='http://s7.addthis.com/js/250/addthis_widget.js' type='text/javascript'></script> </div> <div style='text-align: center; margin-top: 5px;'> <a href='#' target='_new'><img class='banner125' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjRsvc1bZ77e5psDFn8_AxdTpwYU1ISnfmfEVJHJGkLyKPurw94oHiaV_oFg2QwGio6VBTRtaz1OJ8WyZ0_y_0oNFO1rsCAstxZqet8T7oaDtZmGJjqXyGO7pv8yrQuX4eag0ruqBw3ruX/s0/125bnr.gif'/></a> <a href='#' target='_new'><img class='banner125' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjRsvc1bZ77e5psDFn8_AxdTpwYU1ISnfmfEVJHJGkLyKPurw94oHiaV_oFg2QwGio6VBTRtaz1OJ8WyZ0_y_0oNFO1rsCAstxZqet8T7oaDtZmGJjqXyGO7pv8yrQuX4eag0ruqBw3ruX/s0/125bnr.gif'/></a> </div> <div class='sidebar section' id='sidebartop'> <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='http://techalexa.blogspot.com/2010/10/alcohol-120-retails-v2012033.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_WuNew9MPXCGoUMpGtorfLPalXbC6U-vSJ6cH67l5azkq3PwIEjWAVR8mqJNPeubiJnJWO4GtC1spG9ZO7mIxkUjsji8PeYiwt6E6eVCvuOoAr-VKfIqNsXvLN86reLT_lwkiFCezFxI/w72-h72-p-k-no-nu/29g5mt.jpg'/> </a> </div> <div class='item-title'><a href='http://techalexa.blogspot.com/2010/10/alcohol-120-retails-v2012033.html'>Alcohol 120% Retails v2.0.1.2033</a></div> <div class='item-snippet'>At this opportunity I'd love to share the software for you who need this software. and I will provide it for free. and this time I will ...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='http://techalexa.blogspot.com/2010/11/cheat-point-blank-pb-trainner-v9-unity.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-dwBQKipdJD0HlkdeHmoTeLxC8ohAvLzYHQirqNgksRDq9-tE-svt1_Ih8_ohgmQjjfkYOlkc11tkCfBBbN4e8Si-xcIie2xW8IJ8s47cgsKeMv9t6dRfaVSGvmBv9wrxnkAruAFWbeA/w72-h72-p-k-no-nu/Point-Blank+-+Cheat+Hack+Title.jpg'/> </a> </div> <div class='item-title'><a href='http://techalexa.blogspot.com/2010/11/cheat-point-blank-pb-trainner-v9-unity.html'>Cheat Point Blank (PB) Trainner V.9 Unity Area Update 17 November 2010</a></div> <div class='item-snippet'> Cheat been a long time Point Blank (PB) Trainner out but on occasion this time out again Cheat PB Trainer is the Cheat Point Blank (PB) Tra...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='http://techalexa.blogspot.com/2010/10/cheat-point-blank-pb-white-v17-update.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEieggWhcMqrAiF-Isaz9e3maVmGOEcn098NHvlEoRD3jEWzEHdp49ba2puGg-CJlF00FfbKDyC2GS9aW9LlFGb2-jHIQ17bM4-0GgAFCXi5rE6bBEXWnJL9A14ai8S2-_6giS1DctGOyTQ/w72-h72-p-k-no-nu/fdfgg.jpg'/> </a> </div> <div class='item-title'><a href='http://techalexa.blogspot.com/2010/10/cheat-point-blank-pb-white-v17-update.html'>Cheat Point Blank (PB) White V.1.7 Update October 29, 2010</a></div> <div class='item-snippet'>At this opportunity I'd love to share the cheat again, I apologize if this article is late because today the release of my very busy and...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='http://techalexa.blogspot.com/2010/11/cheat-point-blank-pb-loki025-19.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhCCU7fVgWfCtLUL7DhZFPih4PTt7Cc3ct8hStNwUhUXuunokIkNpftbmacbR_5bjX5mFYFO0y2FIuQ2m9N9U2M9WxTk3cCir2VeHuhufYgzFrIC3XZXJeQyFa_Ue8GbaKjcdDnjz_6IXs/w72-h72-p-k-no-nu/1237371853_7966.jpg'/> </a> </div> <div class='item-title'><a href='http://techalexa.blogspot.com/2010/11/cheat-point-blank-pb-loki025-19.html'>Cheat Point Blank (PB) Loki025 19 November 2010</a></div> <div class='item-snippet'> F12: HackRankDanPoint Numpad 1-0: Mission Card Delete: Reset Card sorry injector which is on the cheat Point Blank is a virus, if you w...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='http://techalexa.blogspot.com/2010/12/cheat-ninja-saga-ns-lastest-update-auto.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj-O8k9_nkW6A0GWpCDiow6hRZwqwAHYiJZKX9Nnm2ay9payMCEWF4_NjVN0QgnzDugkSocORkndrLHRowIeJ6PK7PE5X-GerVK1sImhAjz02JiqK-Ya2LlA0-1csZY8Wzn1rJtLev7Xms/w72-h72-p-k-no-nu/ninjasagatitle_by_www.alexa-com.co.cc.jpg'/> </a> </div> <div class='item-title'><a href='http://techalexa.blogspot.com/2010/12/cheat-ninja-saga-ns-lastest-update-auto.html'>Cheat Ninja Saga (NS) Lastest Update Auto EXP December 16, 2010</a></div> <div class='item-snippet'> The steps using Cheat: 1.  Install Fiddler2nya, if already in the Install Fiddler2nya., Go up. 2.  Go Ninja Saga, then select your chara...</div> </div> <div style='clear: both;'></div> </li> </ul> <div class='clear'></div> </div> </div><div class='widget HTML' data-version='1' id='HTML6'> <h2 class='title'>Google Friend Connect</h2> <div class='widget-content'> <!-- Include the Google Friend Connect javascript library. --> <script type="text/javascript" src="http://www.google.com/friendconnect/script/friendconnect.js"></script> <!-- Define the div tag where the gadget will be inserted. --> <div id="div-6414428464576605168" style="width:286px;border:1px solid #cccccc;"></div> <!-- Render the gadget into a div. --> <script type="text/javascript"> var skin = {}; skin['BORDER_COLOR'] = '#cccccc'; skin['ENDCAP_BG_COLOR'] = '#e0ecff'; skin['ENDCAP_TEXT_COLOR'] = '#333333'; skin['ENDCAP_LINK_COLOR'] = '#0000cc'; skin['ALTERNATE_BG_COLOR'] = '#ffffff'; skin['CONTENT_BG_COLOR'] = '#ffffff'; skin['CONTENT_LINK_COLOR'] = '#0000cc'; skin['CONTENT_TEXT_COLOR'] = '#333333'; skin['CONTENT_SECONDARY_LINK_COLOR'] = '#7777cc'; skin['CONTENT_SECONDARY_TEXT_COLOR'] = '#666666'; skin['CONTENT_HEADLINE_COLOR'] = '#333333'; skin['NUMBER_ROWS'] = '2'; google.friendconnect.container.setParentUrl('/' /* location of rpc_relay.html and canvas.html */); google.friendconnect.container.renderMembersGadget( { id: 'div-6414428464576605168', site: '03006243125111753418' }, skin); </script> </div> </div><div class='widget HTML' data-version='1' id='HTML5'> <h2 class='title'>Facebook Friend Connect</h2> <div class='widget-content'> <iframe src="http://www.facebook.com/plugins/likebox.php?id=280050645782&width=300&connections=15&stream=false&header=false&height=325" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:286px; background:#f1f1f1;height:325px;"></iframe> </div> </div></div> </div> </div> </div><!--/container--> <div id='footer'> Copyright © <script type='text/javascript'>var creditsyear = new Date();document.write(creditsyear.getFullYear());</script> <a href='http://techalexa.blogspot.com/'>Alexa-com Weblog</a> | Support by Google Inc </div><!--/footer--> </div><!--/wrapper--> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/984859869-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY4wDwqfa44fL3dPoqesVmRKVOps6Q:1731634254098';_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': 'http://techalexa.blogspot.com/2009/05/introduction-php.html', 'canonicalUrl': 'http://techalexa.blogspot.com/2009/05/introduction-php.html', 'homepageUrl': 'http://techalexa.blogspot.com/', 'searchUrl': 'http://techalexa.blogspot.com/search', 'canonicalHomepageUrl': 'http://techalexa.blogspot.com/', 'blogspotFaviconUrl': 'http://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\x22http://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\x22http://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\x22http://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/a4858bff8adcc0f1', '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': false, 'jumpLinkMessage': 'Read more', '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': 'http://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', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList8', 'nbttopmenu', document.getElementById('PageList8'), {'title': 'Pages - Menu', 'links': [{'isCurrentPage': false, 'href': 'http://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')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'mainblog', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/2784278825-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/1964470060-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts1', 'sidebartop', document.getElementById('PopularPosts1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'sidebartop', document.getElementById('HTML6'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'sidebartop', document.getElementById('HTML5'), {}, 'displayModeFull')); </script> </body> </html>