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 Twitter'><span class='share-button-link-text'>Share to Twitter</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/4269703388-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='http://4.bp.blogspot.com/-pGvlOv8vK6c/UYQrw7wtcAI/AAAAAAAAIhE/vaSR44ygTII/s000/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='http://3.bp.blogspot.com/-yUfDq4rLAuE/UYQrxGGb5sI/AAAAAAAAIhM/jXNYspNx740/s000/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='http://3.bp.blogspot.com/-CRSznU_i0y8/UYQrxW5uJNI/AAAAAAAAIhU/37arM3YfFIU/s000/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='http://4.bp.blogspot.com/-oLxpVQa62q4/UYQrxjHWEhI/AAAAAAAAIhc/KjIberK0GkY/s000/twitter.png' width='32'/></a> <a class='addthis_button_delicious'><img alt='Delicious' height='32' src='http://2.bp.blogspot.com/-fsNmoQA0rVQ/UYQryCpLTGI/AAAAAAAAIhk/xDo0XWjmPq8/s000/delicious.png' width='32'/></a> <a class='addthis_button_facebook'><img alt='Facebook' height='32' src='http://2.bp.blogspot.com/-i3xapEA1Dk8/UYQryaG0P5I/AAAAAAAAIhs/EI52X3L0pWY/s000/facebook.png' width='32'/></a> <a class='addthis_button_digg'><img alt='Digg' height='32' src='http://2.bp.blogspot.com/-LSgGK_Fem38/UYQryt3af0I/AAAAAAAAIh0/Xwg96d3cvlQ/s000/digg.png' width='32'/></a> <a class='addthis_button_stumbleupon'><img alt='Stumbleupon' height='32' src='http://2.bp.blogspot.com/-JHcdv5WHKx8/UYQrzHb_tGI/AAAAAAAAIh8/IgOCSTKN-V4/s000/stumbleupon.png' width='32'/></a> <a class='addthis_button_favorites'><img alt='Favorites' height='32' src='http://1.bp.blogspot.com/-oWMGPUfnqVA/UYQrzXXNKMI/AAAAAAAAIiE/f6cINT5AsyU/s000/favorites.png' width='32'/></a> <a class='addthis_button_more'><img alt='More' height='32' src='http://3.bp.blogspot.com/-HCHq3axysME/UYQrzt3JD2I/AAAAAAAAIiM/sOoXQSn22_k/s000/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='http://3.bp.blogspot.com/-Wf70W39-9uE/UYQrz0WLgWI/AAAAAAAAIiU/_lr2tevzL2Q/s000/125bnr.gif'/></a> <a href='#' target='_new'><img class='banner125' src='http://3.bp.blogspot.com/-Wf70W39-9uE/UYQrz0WLgWI/AAAAAAAAIiU/_lr2tevzL2Q/s000/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/cheat-point-blank-pb-unity-area-v2.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDlWvR1A_Hwb47H3nmm3oe1oXlYerYHD4I4_-DTEpbOYJmH5lZHBS5t3gW1if4PYc43znxTtSvbrPfFm7kf6OJOYqfTndd1uURo86D5ipAyRdIlXOl1JB8lnIT_2A9C9i3EXK80VqF0wo/w72-h72-p-k-no-nu/mission_hack_Point_Blank.jpg'/> </a> </div> <div class='item-title'><a href='http://techalexa.blogspot.com/2010/10/cheat-point-blank-pb-unity-area-v2.html'>Cheat Point Blank (PB) Unity Area V2 Update 30 September 2010</a></div> <div class='item-snippet'> Features Bomberman has been deleted. Clue: Discover the Secret Keys in Trainer, Trainer To be used ... And you do not forget to read the ...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='http://techalexa.blogspot.com/2009/12/ayu-oktasari-film-actor-and-model-porn.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_TNg38KB6eLo5lY6J7yAtznplpVR0TY_Iw9cQCwysoSCmQxlVp39RUx0MgaXOMgfoPvYu8HXBV5NHy32R9n2NtGoqKREY5EMo9TybOVgsoz9r71d45lN2Auxd96MawZpjPNSxJN2JdHg/w72-h72-p-k-no-nu/ayu-oktasari-5.jpg'/> </a> </div> <div class='item-title'><a href='http://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='http://techalexa.blogspot.com/2007/07/contact-us.html' target='_blank'> <img alt='' border='0' src='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_ufgJYBLgOTGyAKIG_EW4Kpg2YP6L6Tq-iRahprMKianXnADuiid3sTHHVDdlPqbJ0n7f0dvNGOJC5w0hYXISLaskfmfj4=w72-h72-p-k-no-nu'/> </a> </div> <div class='item-title'><a href='http://techalexa.blogspot.com/2007/07/contact-us.html'>Contact Us</a></div> <div class='item-snippet'> Please send Critique, Suggestions, and Reports From the following through : Email Facebook Twitter </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/internet-download-manager-idm-v-603.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaA_4Y_IHbugq3STdmoWHCD5cK14ztXVBrxr-c5lBfqrWacsKTqLEpRQZqXBSPG6ysgQJa1X49jUcjnUCLm6yv16Di1_WXuKdnN1ajRM2Bpy_a1dLybvFFtGTEONMzhRUdGOHmWmDHcFM/w72-h72-p-k-no-nu/idm6.02betafullpatch_by_www.alexa-com.co.cc.jpg'/> </a> </div> <div class='item-title'><a href='http://techalexa.blogspot.com/2010/10/internet-download-manager-idm-v-603.html'>Internet Download Manager (IDM) V 6.03 Beta Full Patch</a></div> <div class='item-snippet'>IDM (Internet Download Manager) is a software which has the function as the software to speed up and simplify your download. with the devel...</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-b-injector-padaelo.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/10/cheat-point-blank-b-injector-padaelo.html'>Cheat Point Blank B-Injector Padaelo Latest Update October 3, 2010</a></div> <div class='item-snippet'>Yesterday I had to share Cheat Point Blank Padaelo31 but on this occasion I would like to renew Cheat Point Blank Padaelo with B-Injector is...</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/523887051-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY6TTR8xlSOy0Tvckqlu9RxU6evmhw:1715944334921';_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/8a8c39e8754b0ef7', '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': 'Twitter', 'key': 'twitter', 'shareMessage': 'Share to Twitter', '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/1781096480-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/13464135-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>