{"id":77530,"date":"2022-09-23T02:19:37","date_gmt":"2022-09-23T02:19:37","guid":{"rendered":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/?p=77530"},"modified":"2023-10-26T09:06:00","modified_gmt":"2023-10-26T09:06:00","slug":"decision-making-in-php-with-advanced-examples","status":"publish","type":"post","link":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/","title":{"rendered":"Decision Making in PHP (With Advanced Examples)"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-what-is-decision-making-in-php\"><strong>What is decision-making in PHP?<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><span style=\"background-color: rgb(255, 255, 255);\">Decision-making<\/span> in PHP <\/strong>is the method that enables programmers to create options or decisions through conditional statements.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Moreover, for decision-making statements to work, the programmer must define one or more conditions that the program will test or evaluate.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"> If the condition is <strong>true<\/strong><em>, the <\/em><strong>conditional statements will be run<\/strong>. However, if the condition is <strong>false<\/strong>,<em> <\/em><strong>other statements will sometimes be run instead.\u00a0<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Take a good look at the flow of a simple decision-making statement below.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/Decsisio-Making-in-PHP-Example-Flowchart-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"450\" height=\"495\" src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/Decsisio-Making-in-PHP-Example-Flowchart-1.png\" alt=\"Decision-Making in PHP Example Flowchart\" class=\"wp-image-77603\" srcset=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/Decsisio-Making-in-PHP-Example-Flowchart-1.png 450w, https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/Decsisio-Making-in-PHP-Example-Flowchart-1-273x300.png 273w\" sizes=\"auto, (max-width: 450px) 100vw, 450px\" \/><\/a><figcaption class=\"wp-element-caption\"><em>Decision-Making in PHP Example Flowchart<\/em><\/figcaption><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\"><strong>What are the different types of decision-making statements in PHP?<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">There are different types of decision-making statements that we can explore in this article. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">PHP programming enables the application of decision-making by the following conditional statements:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>if Statement<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>if &#8230; else Statement<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>elseif Statement<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>switch Statement<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">PHP enables actions to be performed based on logical and comparative conditions. In addition, the result of these circumstances (either TRUE or FALSE) will be a user-requested action.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Consequently, a conditional statement functions similarly to a two-way path: if you desire a particular outcome, the program executes as instructed; otherwise, the opposite occurs.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To define the different types of decision-making in PHP, let us start with&#8230;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. if Statement<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <strong>PHP if statement<\/strong> is the simplest form of conditional statement when applied to a program. A piece of code is only executed if the condition evaluates to true.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In addition, the if statement allows programmers to determine an action depending on a particular condition. The syntax for the PHP if statement is presented below for your reference.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-syntax\"><strong>Syntax:<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>if (condition){\n    \/\/ execute this block if true\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Let us try the if statement with an example program and see how this condition works.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-example\"><strong>Example: <\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\n$num = 25;\n \nif ($num &gt; 10) {\n    echo \"$num is greater than 10.\";\n}\n?&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-output\"><strong>Output:<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">25 is greater than 10.<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is how the statement works, the value of the variable $num is 25 and it is compared to the assigned value in the condition which is 10. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So if the condition $num > 10 is true, the output will show that 25 is greater than 10.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">However, if the condition result is false, the program will not show any output. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s a flowchart that will help you understand how the if statement flows<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-flowchart\"><strong>Flowchart:<\/strong><\/h4>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-if-Statement-Flowchart.png\"><img loading=\"lazy\" decoding=\"async\" width=\"450\" height=\"576\" src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-if-Statement-Flowchart.png\" alt=\"PHP Decision-Making (if Statement Flowchart)\" class=\"wp-image-77623\" srcset=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-if-Statement-Flowchart.png 450w, https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-if-Statement-Flowchart-234x300.png 234w\" sizes=\"auto, (max-width: 450px) 100vw, 450px\" \/><\/a><figcaption class=\"wp-element-caption\"><em>PHP Decision-Making (if Statement Flowchart)<\/em><\/figcaption><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\"><strong>2. if&#8230;Else Statement:<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <strong>if statement <\/strong>is understood as a condition with one assigned function and a supporting action once the result is true. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">But if the result is false, the program will not show anything unless you add the else statement.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The<strong> if &#8230; else decision-making in PHP <\/strong>allows programmers to have two executable blocks of code to support either true or false results. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-syntax-0\"><strong>\u00a0Syntax:<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>if (condition) {\n    \/\/ execute this block if the result is true\n}\nelse{\n    \/\/ execute this block if the result in the first block is false\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Let us have an example program where we can implement the if &#8230; else statement.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-example-0\"><strong>Example:<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n$num = 25;\n  \nif ($num &gt; 100) {\n    echo \"$num is greater than 100.\";\n}\nelse{\n    echo \"$num is less than 100.\";\n}\n?&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-output-0\"><strong>Output:<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">25 is less than 100.<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To explain the program, the first block of code (if condition) will display <mark style=\"background-color:var(--base-3);color:#ff0000\" class=\"has-inline-color\"><code>\"25 is greater than 100.\"<\/code><\/mark> if the condition is true. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">But if it is false, the program will execute the second block of code (else condition) and display <code><mark style=\"background-color:var(--base-3);color:#ff0000\" class=\"has-inline-color\">\"25 is less than 100.\"<\/mark><\/code>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-flowchart-0\"><strong>Flowchart:<\/strong><\/h4>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-if-else-Statement-Flowchart.png\"><img loading=\"lazy\" decoding=\"async\" width=\"573\" height=\"534\" src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-if-else-Statement-Flowchart.png\" alt=\"PHP Decision-Making (if-else Statement Flowchart)\" class=\"wp-image-77663\" srcset=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-if-else-Statement-Flowchart.png 573w, https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-if-else-Statement-Flowchart-300x280.png 300w\" sizes=\"auto, (max-width: 573px) 100vw, 573px\" \/><\/a><figcaption class=\"wp-element-caption\"><em>PHP Decision-Making (if-else Statement Flowchart)<\/em><\/figcaption><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\"><strong>3. elseIf Statement<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Another condition in PHP is the<strong> elseif statement<\/strong>, which enables programmers to include multiple conditions within the if&#8230; else statements.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As a clarification, you can use the <mark style=\"background-color:var(--base-3);color:#ff0000\" class=\"has-inline-color\"><code>else<\/code><\/mark> statement (after an <mark style=\"background-color:var(--base-3);color:#ff0000\" class=\"has-inline-color\"><code>if<\/code><\/mark>) to describe a block of code that will only be executed if the first condition is false. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">But if the first test condition is false, use <mark style=\"background-color:var(--base-3);color:#ff0000\" class=\"has-inline-color\"><code>elseif<\/code><\/mark> to define another test condition.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-syntax-1\"><strong>Syntax:<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>if (condition) {\n    \/\/ execute this block if the result is true\n}\nelseif {\n    \/\/ execute this block if the result in the first block is false\n}\nelse {\n    \/\/ execute this block if the result in the first and second blocks are false\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Example: <\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n$num = 100;\n  \nif ($num &gt; 100) {\n    echo \"$num is greater than 100.\";\n}\nelseif ($num &lt; 100) {\n    echo \"$num is less than 100.\";\n}\nelse{\n\techo \"$num is equal to 100.\";\n}\n?&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-output-1\"><strong>Output:<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">100 is equal to 100.<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-flowchart-1\"><strong>Flowchart:<\/strong><\/h4>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-else-if-Statement-Flowchart.png\"><img loading=\"lazy\" decoding=\"async\" width=\"864\" height=\"720\" src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-else-if-Statement-Flowchart.png\" alt=\"PHP Decision-Making (else-if Statement Flowchart)\" class=\"wp-image-77662\" srcset=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-else-if-Statement-Flowchart.png 864w, https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-else-if-Statement-Flowchart-300x250.png 300w, https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-else-if-Statement-Flowchart-768x640.png 768w\" sizes=\"auto, (max-width: 864px) 100vw, 864px\" \/><\/a><figcaption class=\"wp-element-caption\"><em>PHP Decision-Making (else-if Statement Flowchart)<\/em><\/figcaption><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\"><strong>4. switch Statement<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <strong>switch statement<\/strong> executes several cases that match the condition and executes the case block as appropriate. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It evaluates an expression before comparing it with each case&#8217;s values. As a result, whenever a case is matched, an identical case is run.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">However, to use the switch statement in PHP decision-making, you have to be familiar with two distinct terms:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>break <\/strong>&#8211; After the code for the first true case has been run, it tells the program to leave the switch-case statement block.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>default <\/strong>&#8211; It is applied when there is no case in which the constant-expression value equals the expression&#8217;s value. If there is no <a href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/learn.microsoft.com\/en-us\/cpp\/c-language\/switch-statement-c?view=msvc-170\" target=\"_blank\" rel=\"noreferrer noopener\">default statement<\/a> and there is no case match, none of the statements in the switch body are run.&nbsp;<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-syntax-2\"><strong>Syntax:<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>switch(condition) {\n    case statement1:\n        execute this block if the condition mathched with statement1;\n        break;\n    case statement2:\n        execute this block if the condition mathched with statement2;\n        break;\n    case statement3:\n        execute this block if the condition mathched with statement3;\n        break;\n\n    ......\n    default:\n        default code to be executed if none of the cases matched the condition;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-example-1\"><strong>Example: <\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n$day = \"Sunday\";\n\nswitch($day) {\n\tcase \"Monday\":\n\t\techo \"Today is Monday\";\n\tbreak;\n \tcase \"Teusday\":\n  \t\techo \"Today is Teusday\";\n  \tbreak;\n \tcase \"Wednesday\":\n  \t\techo \"Today is Wednesday\";\n  \tbreak;\n \tcase \"Thursday\":\n  \t\techo \"Today is Thursday\";\n  \tbreak;\n \tcase \"Friday\":\n  \t\techo \"Today is Friday\";\n  \tbreak;\n \tcase \"Saturday\":\n  \t\techo \"Today is Saturday\";\n  \tbreak;\n \tcase \"Sunday\":\n  \t\techo \"Today is Sunday\";\n  \tbreak;\n \tdefault:\n  \t\techo \"Doesn't exist\";\n}\n?&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-output-2\"><strong>Output:<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">Today is Sunday<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-flowchart-2\"><strong>Flowchart:<\/strong><\/h4>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-Switch-Statement.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-Switch-Statement-1024x576.png\" alt=\"PHP Decision-Making (Switch Statement)\" class=\"wp-image-77678\" srcset=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-Switch-Statement-1024x576.png 1024w, https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-Switch-Statement-300x169.png 300w, https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-Switch-Statement-768x432.png 768w, https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/PHP-Decision-Making-Switch-Statement.png 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\"><em>PHP Decision-Making (Switch Statement)<\/em><\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-articles\"><strong>Related Articles<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/types-of-loops-in-php-with-flowcharts-and-program-examples\/\">Types of Loops in PHP (With Flowcharts and Program Examples)<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/php-shorthand-if-elseif-else\/\">PHP Shorthand If ElseIf Else<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/php-elvis-operator-detailed-explanation-with-examples\/\">PHP Elvis Operator (Detailed Explanation With Examples)<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/not-in-array-php-with-advanced-program-examples\/\">Not in Array PHP (With Advanced Program Examples)<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/php-tutorial-for-beginners-easy-learning-in-php\/\">PHP Tutorial For Beginners \u2013 Easy Learning In PHP<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In conclusion, the<strong> Decision-Making in PHP<\/strong> topic has covered all of the conditional statements used in PHP programming. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The conditional statements will help you apply the programming logic and expand your skills in decision-making and creating reasonable options. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Hoping that you have learned the main reason for this discussion. If you have any concerns you can tap us through the comments below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is decision-making in PHP? Decision-making in PHP is the method that enables programmers to create options or decisions through conditional statements. Moreover, for decision-making statements to work, the programmer &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Decision Making in PHP (With Advanced Examples)\" class=\"read-more button\" href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/#more-77530\" aria-label=\"Read more about Decision Making in PHP (With Advanced Examples)\">Read more<\/a><\/p>\n","protected":false},"author":1817,"featured_media":77276,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[61035],"tags":[95209,95210,95208],"class_list":["post-77530","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php-tutorial","tag-decision-making-as-conditional-statements-in-php","tag-learn-the-conditional-statement-of-php-programming-with-example-programs","tag-what-is-decision-making-in-php","resize-featured-image"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v27.8) - https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Decision Making in PHP (With Advanced Examples) - Itsourcecode.com<\/title>\n<meta name=\"description\" content=\"Start applying conditional statements in your projects by learning how to use them with this Decision Making In PHP full tutorial with...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Decision Making in PHP (With Advanced Examples)\" \/>\n<meta property=\"og:description\" content=\"Start applying conditional statements in your projects by learning how to use them with this Decision Making In PHP full tutorial with...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"Itsourcecode.com\" \/>\n<meta property=\"article:author\" content=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/www.facebook.com\/grace.patulada.75\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-23T02:19:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-26T09:06:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/decision-making-in-php.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1460\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Nym\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nym\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/\"},\"author\":{\"name\":\"Nym\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/433448abb67ef2ea8d2802aaa5e053b7\"},\"headline\":\"Decision Making in PHP (With Advanced Examples)\",\"datePublished\":\"2022-09-23T02:19:37+00:00\",\"dateModified\":\"2023-10-26T09:06:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/\"},\"wordCount\":791,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/3883cf6bf7d0f141f81ccef0de9dd3fd\"},\"image\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/decision-making-in-php.png\",\"keywords\":[\"decision-making as conditional statements in PHP\",\"learn the conditional statement of PHP programming with example programs\",\"what is decision-making in PHP\"],\"articleSection\":[\"PHP Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/\",\"name\":\"Decision Making in PHP (With Advanced Examples) - Itsourcecode.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/decision-making-in-php.png\",\"datePublished\":\"2022-09-23T02:19:37+00:00\",\"dateModified\":\"2023-10-26T09:06:00+00:00\",\"description\":\"Start applying conditional statements in your projects by learning how to use them with this Decision Making In PHP full tutorial with...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/#primaryimage\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/decision-making-in-php.png\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/decision-making-in-php.png\",\"width\":1460,\"height\":900,\"caption\":\"Decision-Making in PHP (With Advanced Examples)\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/php-tutorial\\\/decision-making-in-php-with-advanced-examples\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/itsourcecode.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Decision Making in PHP (With Advanced Examples)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#website\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/\",\"name\":\"Itsourcecode.com\",\"description\":\"Partner In Your Coding Journey!\",\"publisher\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/3883cf6bf7d0f141f81ccef0de9dd3fd\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/itsourcecode.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/3883cf6bf7d0f141f81ccef0de9dd3fd\",\"name\":\"itsourcecode\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"width\":409,\"height\":409,\"caption\":\"itsourcecode\"},\"logo\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\"},\"description\":\"Hello Itsourcecoders, welcome to itsourcecode.com. I'm Joken Villanueva, MIT a passionate Blogger, Programmer and a Hobbyist. I started Itsourcecode because I wanted to give back and Share all the learnings and knowledge I've learned in my career and I believe through this website I would be able to help and assist those newbie programmers in enhancing their skills from different programming languages. So let us all help each other by sharing our ideas!\",\"sameAs\":[\"https:\\\/\\\/itsourcecode.com\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/433448abb67ef2ea8d2802aaa5e053b7\",\"name\":\"Nym\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/42d30861867f33a159ad6834c7962ba9.jpg?ver=1781873050\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/42d30861867f33a159ad6834c7962ba9.jpg?ver=1781873050\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/42d30861867f33a159ad6834c7962ba9.jpg?ver=1781873050\",\"caption\":\"Nym\"},\"description\":\"Hi itsourcecoders! I am Mary Grace Patulada, a student in Carlos Hilado Memorial State College in Binalbagan Campus.\",\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/grace.patulada.75\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Decision Making in PHP (With Advanced Examples) - Itsourcecode.com","description":"Start applying conditional statements in your projects by learning how to use them with this Decision Making In PHP full tutorial with...","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:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/","og_locale":"en_US","og_type":"article","og_title":"Decision Making in PHP (With Advanced Examples)","og_description":"Start applying conditional statements in your projects by learning how to use them with this Decision Making In PHP full tutorial with...","og_url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/","og_site_name":"Itsourcecode.com","article_author":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/www.facebook.com\/grace.patulada.75","article_published_time":"2022-09-23T02:19:37+00:00","article_modified_time":"2023-10-26T09:06:00+00:00","og_image":[{"width":1460,"height":900,"url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/decision-making-in-php.png","type":"image\/png"}],"author":"Nym","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Nym","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/#article","isPartOf":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/"},"author":{"name":"Nym","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/#\/schema\/person\/433448abb67ef2ea8d2802aaa5e053b7"},"headline":"Decision Making in PHP (With Advanced Examples)","datePublished":"2022-09-23T02:19:37+00:00","dateModified":"2023-10-26T09:06:00+00:00","mainEntityOfPage":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/"},"wordCount":791,"commentCount":0,"publisher":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/#\/schema\/person\/3883cf6bf7d0f141f81ccef0de9dd3fd"},"image":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/decision-making-in-php.png","keywords":["decision-making as conditional statements in PHP","learn the conditional statement of PHP programming with example programs","what is decision-making in PHP"],"articleSection":["PHP Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/","url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/","name":"Decision Making in PHP (With Advanced Examples) - Itsourcecode.com","isPartOf":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/#primaryimage"},"image":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/decision-making-in-php.png","datePublished":"2022-09-23T02:19:37+00:00","dateModified":"2023-10-26T09:06:00+00:00","description":"Start applying conditional statements in your projects by learning how to use them with this Decision Making In PHP full tutorial with...","breadcrumb":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/#primaryimage","url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/decision-making-in-php.png","contentUrl":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2022\/09\/decision-making-in-php.png","width":1460,"height":900,"caption":"Decision-Making in PHP (With Advanced Examples)"},{"@type":"BreadcrumbList","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/php-tutorial\/decision-making-in-php-with-advanced-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/"},{"@type":"ListItem","position":2,"name":"Decision Making in PHP (With Advanced Examples)"}]},{"@type":"WebSite","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/#website","url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/","name":"Itsourcecode.com","description":"Partner In Your Coding Journey!","publisher":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/#\/schema\/person\/3883cf6bf7d0f141f81ccef0de9dd3fd"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/#\/schema\/person\/3883cf6bf7d0f141f81ccef0de9dd3fd","name":"itsourcecode","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","contentUrl":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","width":409,"height":409,"caption":"itsourcecode"},"logo":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg"},"description":"Hello Itsourcecoders, welcome to itsourcecode.com. I'm Joken Villanueva, MIT a passionate Blogger, Programmer and a Hobbyist. I started Itsourcecode because I wanted to give back and Share all the learnings and knowledge I've learned in my career and I believe through this website I would be able to help and assist those newbie programmers in enhancing their skills from different programming languages. So let us all help each other by sharing our ideas!","sameAs":["https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/"]},{"@type":"Person","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/#\/schema\/person\/433448abb67ef2ea8d2802aaa5e053b7","name":"Nym","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/litespeed\/avatar\/42d30861867f33a159ad6834c7962ba9.jpg?ver=1781873050","url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/litespeed\/avatar\/42d30861867f33a159ad6834c7962ba9.jpg?ver=1781873050","contentUrl":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-content\/litespeed\/avatar\/42d30861867f33a159ad6834c7962ba9.jpg?ver=1781873050","caption":"Nym"},"description":"Hi itsourcecoders! I am Mary Grace Patulada, a student in Carlos Hilado Memorial State College in Binalbagan Campus.","sameAs":["https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/www.facebook.com\/grace.patulada.75"]}]}},"_links":{"self":[{"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/77530","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/users\/1817"}],"replies":[{"embeddable":true,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/comments?post=77530"}],"version-history":[{"count":32,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/77530\/revisions"}],"predecessor-version":[{"id":119430,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/77530\/revisions\/119430"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/media\/77276"}],"wp:attachment":[{"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/media?parent=77530"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/categories?post=77530"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/tags?post=77530"}],"curies":[{"name":"wp","href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/api.w.org\/{rel}","templated":true}]}}