{"id":614,"date":"2017-05-05T12:48:58","date_gmt":"2017-05-05T05:48:58","guid":{"rendered":"http:\/\/www.yellowweb.id\/blog\/?p=614"},"modified":"2017-05-05T12:48:58","modified_gmt":"2017-05-05T05:48:58","slug":"membuat-konfirmasi-password-re-type-php","status":"publish","type":"post","link":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/","title":{"rendered":"Membuat Konfirmasi Password (re-type) PHP"},"content":{"rendered":"<p>Kita akan mencoba membuat konfirmasi password 2 langkah, jadi seperti ini teman-teman pasti pernah melihat saat buat akun baru biasanya, kita di minta menuliskan password atau kata sandi sebanyak 2 kali, biasanya ada petunjuk di form tersebut misalnya re-type password atau ketik ulang kembali. Tujuaanya adalah untuk mencocokan apakah password yang akan kita buat itu sudah sama atau belum. Teman-teman siap ya untuk mencoba membuatnya. Mari kita lakukan bersama.<br \/>\n<!--more--><\/p>\n<p>Buat file index.html<\/p>\n<pre class=\"lang:default decode:true \" >&lt;?php\r\n\tsession_start();\r\n\tif(empty($_SESSION[\"sesiku\"])){\r\n\t\theader(\"location: login.php\");\r\n\t}\r\n?&gt;\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n\t&lt;title&gt;HOME | Kursus Web YELLOWWEB.ID&lt;\/title&gt;\r\n\t&lt;style type=\"text\/css\"&gt;\r\n\t\t@import url('https:\/\/fonts.googleapis.com\/css?family=Anton');\r\n\r\n\t\t*{\r\n\t\t\tpadding: 0;\r\n\t\t\tmargin: 0;\r\n\t\t}\r\n\t\tbody{\r\n\t\t\ttext-align: center;\r\n\t\t\tfont-family: 'Arial';\r\n\t\t}\r\n\r\n\t\th1,h2 {\r\n\t\t\tmargin: 50px 0;\r\n\t\t}\r\n\r\n\t\t.brand{\r\n\t\t\tfont-size: 100px;\r\n\t\t\tfont-family: 'Anton', sans-serif;\r\n\t\t\tbackground-color: #000000;\r\n\t\t\theight: 150px;\r\n\t\t\tcolor: #ffffff;\r\n\t\t\tfont-style: italic;\r\n\t\t\tpadding-top: 10px;\r\n\t\t\tletter-spacing: 5px;\r\n\t\t}\r\n\r\n\t\t.yl{\r\n\t\t\tcolor: #ffff00;\r\n\t\t}\r\n\r\n\t\t.wb{\r\n\t\t\tcolor: #ffffff;\r\n\t\t}\r\n\r\n\t\t.ylbrand{\r\n\t\t\ttext-decoration: none;\r\n\t\t}\r\n\r\n\t\t.yl:hover{\r\n\t\t\tcolor: #ffffff;\r\n\t\t\ttransition: 250ms;\r\n\t\t}\r\n\r\n\t\t.wb:hover{\r\n\t\t\tcolor: #ffff00;\r\n\t\t\ttransition: 250ms;\r\n\t\t}\r\n\r\n\r\n\t&lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\t&lt;h1&gt;SELAMAT DATANG&lt;\/h1&gt;\r\n\t&lt;h2&gt;INGIN BELAJAR MEMBUAT WEBSITE, JANGAN RAGU UNTUK BELAJAR DENGAN KAMI :)&lt;\/h2&gt;\r\n\t&lt;h2 class=\"brand\"&gt;\r\n\t\t&lt;a class=\"ylbrand\" href=\"http:\/\/www.yellowweb.id\" target=\"_blank\"&gt;&lt;span class=\"yl\"&gt;YELLOW&lt;\/span&gt;&lt;span class=\"wb\"&gt;WEB.ID&lt;\/span&gt;&lt;\/a&gt;\r\n\t&lt;\/h2&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n\r\n<\/pre>\n<p>Kemudian file login.php<\/p>\n<pre class=\"lang:default decode:true \" >&lt;?php\r\n\tsession_start();\r\n\tinclude \"koneksi.php\";\r\n\tif(isset($_POST[\"masuk\"])){\r\n\t\t$us = $_POST[\"userku\"];\r\n\t\t$ps = $_POST[\"pass1\"];\r\n\t\t$ps2 = $_POST[\"pass2\"];\r\n\r\n\t\t$sql = \"SELECT * FROM tbl_operator WHERE user='$us' AND pass='$ps'\";\r\n\t\t$query = mysql_query($sql) or die (mysql_error());\r\n\r\n\t\tif(mysql_num_rows($query) &gt; 0){\r\n\t\t\t$data = mysql_fetch_array($query);\r\n\r\n\t\t\t$_SESSION[\"sesiku\"] = $data[\"user\"];\r\n\t\t\t$_SESSION[\"psesiku\"] = $data[\"pass\"];\r\n\r\n\t\t\theader(\"location: index.php\");\r\n\t\t} elseif($ps != $ps2){\r\n\t\t\techo \"password tidak sama\";\r\n\t\t} else {\r\n\t\t\techo \"Gagal\";\r\n\t\t}\r\n\t}\r\n?&gt;\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n\t&lt;title&gt;Login&lt;\/title&gt;\r\n\t&lt;style&gt;\r\n\t\tbody{\r\n\t\t\tfont-family: 'Arial';\r\n\t\t\tfont-size: 14px;\r\n\t\t}\r\n\t&lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\t&lt;h2&gt;Login Dulu ya&lt;\/h2&gt;\r\n\t&lt;form action=\"\" method=\"POST\"&gt;\r\n\t\t&lt;table&gt;\r\n\t\t\t&lt;tr&gt;\r\n\t\t\t\t&lt;td&gt;Username&lt;\/td&gt;\r\n\t\t\t\t&lt;td&gt;:&lt;\/td&gt;\r\n\t\t\t\t&lt;td&gt;&lt;input type=\"text\" name=\"userku\" placeholder=\"Masukkan Username\"&gt;&lt;\/td&gt;\r\n\t\t\t&lt;\/tr&gt;\r\n\t\t\t&lt;tr&gt;\r\n\t\t\t\t&lt;td&gt;Password&lt;\/td&gt;\r\n\t\t\t\t&lt;td&gt;:&lt;\/td&gt;\r\n\t\t\t\t&lt;td&gt;&lt;input type=\"password\" name=\"pass1\" placeholder=\"Masukkan Password\"&gt;&lt;\/td&gt;\r\n\t\t\t&lt;\/tr&gt;\r\n\t\t\t&lt;tr&gt;\r\n\t\t\t\t&lt;td&gt;retype - Password&lt;\/td&gt;\r\n\t\t\t\t&lt;td&gt;:&lt;\/td&gt;\r\n\t\t\t\t&lt;td&gt;&lt;input type=\"password\" name=\"pass2\" placeholder=\"Ketik Ulang Password\"&gt;&lt;\/td&gt;\r\n\t\t\t&lt;\/tr&gt;\r\n\t\t\t&lt;tr&gt;\r\n\t\t\t\t&lt;td&gt;&lt;\/td&gt;\r\n\t\t\t\t&lt;td&gt;&lt;\/td&gt;\r\n\t\t\t\t&lt;td&gt;\r\n\t\t\t\t\t&lt;input type=\"submit\" name=\"masuk\" value=\"Masuk\"&gt;\r\n\t\t\t\t\t&lt;input type=\"reset\" name=\"reset\" value=\"Clear\"&gt;\r\n\t\t\t\t&lt;\/td&gt;\r\n\t\t\t&lt;\/tr&gt;\r\n\t\t&lt;\/table&gt;\r\n\t&lt;\/form&gt;\r\n\t&lt;p&gt;Kunjungi situs kami di &lt;a href=\"http:\/\/www.yellowweb.id\" target=\"_blank\"&gt;YELLOWWEB&lt;\/a&gt;&lt;\/p&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>Untuk file koneksi.php<\/p>\n<pre class=\"lang:default decode:true \" >&lt;?php\r\n\t\r\n\t$server = \"localhost\";\r\n\t$user = \"root\";\r\n\t$pass = \"\";\r\n\t$db = \"db_log\";\r\n\r\n\t$con = mysql_connect($server, $user, $pass) or die (mysql_error());\r\n\t$dbase = mysql_select_db($db, $con) or die (mysql_error());<\/pre>\n<p>dan databasenya, sebagai berikut:<\/p>\n<pre class=\"lang:default decode:true \" >-- phpMyAdmin SQL Dump\r\n-- version 4.5.2\r\n-- http:\/\/www.phpmyadmin.net\r\n--\r\n-- Host: localhost\r\n-- Generation Time: May 04, 2017 at 12:37 PM\r\n-- Server version: 10.1.16-MariaDB\r\n-- PHP Version: 5.6.24\r\n\r\nSET SQL_MODE = \"NO_AUTO_VALUE_ON_ZERO\";\r\nSET time_zone = \"+00:00\";\r\n\r\n\r\n\/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT *\/;\r\n\/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS *\/;\r\n\/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION *\/;\r\n\/*!40101 SET NAMES utf8mb4 *\/;\r\n\r\n--\r\n-- Database: `db_log`\r\n--\r\n\r\n-- --------------------------------------------------------\r\n\r\n--\r\n-- Table structure for table `tbl_operator`\r\n--\r\n\r\nCREATE TABLE `tbl_operator` (\r\n  `id_op` int(5) NOT NULL,\r\n  `user` varchar(100) NOT NULL,\r\n  `pass` text NOT NULL\r\n) ENGINE=InnoDB DEFAULT CHARSET=latin1;\r\n\r\n--\r\n-- Dumping data for table `tbl_operator`\r\n--\r\n\r\nINSERT INTO `tbl_operator` (`id_op`, `user`, `pass`) VALUES\r\n(1, 'admin', 'admin'),\r\n(2, 'yellowweb', 'yellowweb');\r\n\r\n--\r\n-- Indexes for dumped tables\r\n--\r\n\r\n--\r\n-- Indexes for table `tbl_operator`\r\n--\r\nALTER TABLE `tbl_operator`\r\n  ADD PRIMARY KEY (`id_op`);\r\n\r\n--\r\n-- AUTO_INCREMENT for dumped tables\r\n--\r\n\r\n--\r\n-- AUTO_INCREMENT for table `tbl_operator`\r\n--\r\nALTER TABLE `tbl_operator`\r\n  MODIFY `id_op` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;\r\n\/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT *\/;\r\n\/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS *\/;\r\n\/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION *\/;\r\n<\/pre>\n<p>Teman-teman selamat mencoba<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Kita akan mencoba membuat konfirmasi password 2 langkah, jadi seperti ini teman-teman pasti pernah melihat saat buat akun baru biasanya, kita di minta menuliskan password atau kata sandi sebanyak 2 kali, biasanya ada petunjuk di form tersebut misalnya re-type password atau ketik ulang kembali. Tujuaanya adalah untuk mencocokan apakah password yang akan kita buat itu [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":617,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[110,11],"tags":[299,298,329,88,94,331,330],"class_list":["post-614","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php","category-tutorial","tag-hak-akses","tag-login","tag-password","tag-php","tag-security","tag-sesi","tag-session"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Membuat Konfirmasi Password (re-type) PHP - YELLOWWEB.ID<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Membuat Konfirmasi Password (re-type) PHP - YELLOWWEB.ID\" \/>\n<meta property=\"og:description\" content=\"Kita akan mencoba membuat konfirmasi password 2 langkah, jadi seperti ini teman-teman pasti pernah melihat saat buat akun baru biasanya, kita di minta menuliskan password atau kata sandi sebanyak 2 kali, biasanya ada petunjuk di form tersebut misalnya re-type password atau ketik ulang kembali. Tujuaanya adalah untuk mencocokan apakah password yang akan kita buat itu [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/\" \/>\n<meta property=\"og:site_name\" content=\"YELLOWWEB.ID\" \/>\n<meta property=\"article:published_time\" content=\"2017-05-05T05:48:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/05\/retype-password-yellowweb.jpeg?fit=472%2C389&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"472\" \/>\n\t<meta property=\"og:image:height\" content=\"389\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"yellowweb\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"yellowweb\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/\"},\"author\":{\"name\":\"yellowweb\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"headline\":\"Membuat Konfirmasi Password (re-type) PHP\",\"datePublished\":\"2017-05-05T05:48:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/\"},\"wordCount\":91,\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/retype-password-yellowweb.jpeg\",\"keywords\":[\"hak akses\",\"login\",\"password\",\"php\",\"security\",\"sesi\",\"session\"],\"articleSection\":[\"PHP\",\"Tutorial\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/\",\"name\":\"Membuat Konfirmasi Password (re-type) PHP - YELLOWWEB.ID\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/retype-password-yellowweb.jpeg\",\"datePublished\":\"2017-05-05T05:48:58+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/retype-password-yellowweb.jpeg\",\"contentUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/retype-password-yellowweb.jpeg\",\"width\":472,\"height\":389,\"caption\":\"retype-password-yellowweb\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/membuat-konfirmasi-password-re-type-php\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Membuat Konfirmasi Password (re-type) PHP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\",\"name\":\"YELLOWWEB.ID\",\"description\":\"Kursus Web Design | Kursus Web Programming | Mobile Web Apps | Digital Marketing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\",\"name\":\"yellowweb\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"caption\":\"yellowweb\"},\"sameAs\":[\"https:\\\/\\\/www.yellowweb.id\"],\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/author\\\/yellowweb\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Membuat Konfirmasi Password (re-type) PHP - YELLOWWEB.ID","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/","og_locale":"en_GB","og_type":"article","og_title":"Membuat Konfirmasi Password (re-type) PHP - YELLOWWEB.ID","og_description":"Kita akan mencoba membuat konfirmasi password 2 langkah, jadi seperti ini teman-teman pasti pernah melihat saat buat akun baru biasanya, kita di minta menuliskan password atau kata sandi sebanyak 2 kali, biasanya ada petunjuk di form tersebut misalnya re-type password atau ketik ulang kembali. Tujuaanya adalah untuk mencocokan apakah password yang akan kita buat itu [&hellip;]","og_url":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/","og_site_name":"YELLOWWEB.ID","article_published_time":"2017-05-05T05:48:58+00:00","og_image":[{"width":472,"height":389,"url":"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/05\/retype-password-yellowweb.jpeg?fit=472%2C389&ssl=1","type":"image\/jpeg"}],"author":"yellowweb","twitter_card":"summary_large_image","twitter_misc":{"Written by":"yellowweb","Estimated reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/#article","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/"},"author":{"name":"yellowweb","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"headline":"Membuat Konfirmasi Password (re-type) PHP","datePublished":"2017-05-05T05:48:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/"},"wordCount":91,"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/05\/retype-password-yellowweb.jpeg","keywords":["hak akses","login","password","php","security","sesi","session"],"articleSection":["PHP","Tutorial"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/","url":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/","name":"Membuat Konfirmasi Password (re-type) PHP - YELLOWWEB.ID","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/#primaryimage"},"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/05\/retype-password-yellowweb.jpeg","datePublished":"2017-05-05T05:48:58+00:00","author":{"@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"breadcrumb":{"@id":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/#primaryimage","url":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/05\/retype-password-yellowweb.jpeg","contentUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/05\/retype-password-yellowweb.jpeg","width":472,"height":389,"caption":"retype-password-yellowweb"},{"@type":"BreadcrumbList","@id":"https:\/\/www.yellowweb.id\/blog\/membuat-konfirmasi-password-re-type-php\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.yellowweb.id\/blog\/"},{"@type":"ListItem","position":2,"name":"Membuat Konfirmasi Password (re-type) PHP"}]},{"@type":"WebSite","@id":"https:\/\/www.yellowweb.id\/blog\/#website","url":"https:\/\/www.yellowweb.id\/blog\/","name":"YELLOWWEB.ID","description":"Kursus Web Design | Kursus Web Programming | Mobile Web Apps | Digital Marketing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.yellowweb.id\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829","name":"yellowweb","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","caption":"yellowweb"},"sameAs":["https:\/\/www.yellowweb.id"],"url":"https:\/\/www.yellowweb.id\/blog\/author\/yellowweb\/"}]}},"_links":{"self":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/614","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/comments?post=614"}],"version-history":[{"count":2,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/614\/revisions"}],"predecessor-version":[{"id":616,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/614\/revisions\/616"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media\/617"}],"wp:attachment":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media?parent=614"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/categories?post=614"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/tags?post=614"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}