{"id":209,"date":"2022-11-01T07:12:13","date_gmt":"2022-11-01T07:12:13","guid":{"rendered":"https:\/\/jassweb.com\/new22\/solved-how-to-upload-image-using-angularjs-php-mysql\/"},"modified":"2022-11-01T07:12:13","modified_gmt":"2022-11-01T07:12:13","slug":"solved-how-to-upload-image-using-angularjs-php-mysql-2","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/","title":{"rendered":"[Solved] How to upload image using angularjs php mysql"},"content":{"rendered":"<h2> Introduction <\/h2>\n<p>[ad_1]<\/p>\n<p>This tutorial will provide a step-by-step guide on how to upload an image using AngularJS, PHP, and MySQL. We will cover the basics of setting up the environment, creating the necessary HTML and JavaScript code, and connecting to the database. We will also discuss how to store the image in the database and how to retrieve it for display. By the end of this tutorial, you will have a working image upload system.<\/p>\n<h2> Solution<\/h2>\n<p><\/p>\n<p>\/\/AngularJS<\/p>\n<p>\/\/Create a file input field in your HTML<br \/>\n<input type=\"file\" ng-model=\"image\" \/><\/p>\n<p>\/\/In your controller, add the following code<br \/>\n$scope.uploadImage = function(){<br \/>\n    var fd = new FormData();<br \/>\n    fd.append(&#8216;image&#8217;, $scope.image);<br \/>\n    $http.post(&#8216;upload.php&#8217;, fd, {<br \/>\n        transformRequest: angular.identity,<br \/>\n        headers: {&#8216;Content-Type&#8217;: undefined}<br \/>\n    })<br \/>\n    .success(function(response){<br \/>\n        console.log(response);<br \/>\n    })<br \/>\n    .error(function(error){<br \/>\n        console.log(error);<br \/>\n    });<br \/>\n}<\/p>\n<p>\/\/PHP<\/p>\n<p>\/\/Create a file called upload.php<br \/>\n<?php\n    $target_dir = \"uploads\/\";\n    $target_file = $target_dir . basename($_FILES[\"image\"][\"name\"]);\n    $uploadOk = 1;\n    $imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));\n    \/\/ Check if image file is a actual image or fake image\n    if(isset($_POST[\"submit\"])) {\n        $check = getimagesize($_FILES[\"image\"][\"tmp_name\"]);\n        if($check !== false) {\n            echo \"File is an image - \" . $check[\"mime\"] . \".\";\n            $uploadOk = 1;\n        } else {\n            echo \"File is not an image.\";\n            $uploadOk = 0;\n        }\n    }\n    \/\/ Check if file already exists\n    if (file_exists($target_file)) {\n        echo \"Sorry, file already exists.\";\n        $uploadOk = 0;\n    }\n    \/\/ Check file size\n    if ($_FILES[\"image\"][\"size\"] > 500000) {<br \/>\n        echo &#8220;Sorry, your file is too large.&#8221;;<br \/>\n        $uploadOk = 0;<br \/>\n    }<br \/>\n    \/\/ Allow certain file formats<br \/>\n    if($imageFileType != &#8220;jpg&#8221; &#038;&#038; $imageFileType != &#8220;png&#8221; &#038;&#038; $imageFileType != &#8220;jpeg&#8221;<br \/>\n    &#038;&#038; $imageFileType != &#8220;gif&#8221; ) {<br \/>\n        echo &#8220;Sorry, only JPG, JPEG, PNG &#038; GIF files are allowed.&#8221;;<br \/>\n        $uploadOk = 0;<br \/>\n    }<br \/>\n    \/\/ Check if $uploadOk is set to 0 by an error<br \/>\n    if ($uploadOk == 0) {<br \/>\n        echo &#8220;Sorry, your file was not uploaded.&#8221;;<br \/>\n    \/\/ if everything is ok, try to upload file<br \/>\n    } else {<br \/>\n        if (move_uploaded_file($_FILES[&#8220;image&#8221;][&#8220;tmp_name&#8221;], $target_file)) {<br \/>\n            echo &#8220;The file &#8220;. basename( $_FILES[&#8220;image&#8221;][&#8220;name&#8221;]). &#8221; has been uploaded.&#8221;;<br \/>\n        } else {<br \/>\n            echo &#8220;Sorry, there was an error uploading your file.&#8221;;<br \/>\n        }<br \/>\n    }<br \/>\n?><\/p>\n<p>\/\/MySQL<\/p>\n<p>\/\/Create a table in your database to store the image<br \/>\nCREATE TABLE images (<br \/>\n    id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,<br \/>\n    image VARCHAR(255) NOT NULL<br \/>\n);<\/p>\n<p>\/\/Insert the image into the database<br \/>\n$sql = &#8220;INSERT INTO images (image) VALUES (&#8216;$target_file&#8217;)&#8221;;<br \/>\nif ($conn->query($sql) === TRUE) {<br \/>\n    echo &#8220;New record created successfully&#8221;;<br \/>\n} else {<br \/>\n    echo &#8220;Error: &#8221; . $sql . &#8220;<br \/>&#8221; . $conn->error;<br \/>\n} <\/p>\n<p><\/p>\n<div class=\"entry-content\" itemprop=\"text\">\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-1088640234840270\" crossorigin=\"anonymous\"><\/script><br \/>\n<script><\/p>\n<p><\/script><\/p>\n<p><\/p>\n<div id=\"answer-47925539\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"47925539\" data-parentid=\"47924192\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>Yes, You can upload any image or file using AngularJs follow the below steps.<br \/>\nNote here I am uploading the file to store in a folder and not to the database because it\u2019s a bad idea to upload the file into the database instead of that store the file into folder and name of the file in the database.<\/p>\n<p>Step 1: Create the simple view in HTML as below:<\/p>\n<pre><code>&lt;form name=\"upload_file\" id=\"upload_file\" ng-submit=\"functionName();\"&gt;    \n    &lt;input type=\"file\" name=\"inputfieldname\"&gt;\n    &lt;button type=\"submit\"&gt;Upload&lt;\/button&gt;\n&lt;\/form&gt;\n<\/code><\/pre>\n<p>Now in angular controller write the function as below:<\/p>\n<pre><code>$scope.functionName = function() {\n var formdata = new FormData();\n var filename = document.getElementById('upload_file').files[0];\n\n formdata.append('filename', filename);\n\n    $http({\n        method: 'post',\n        url: 'action.php',\/\/Put your php file url\n        data: formdata,\n        headers: {'Content-Type': undefined},\n    }).then(function successCallback(result) {\n\n        $scope.message = result.data;\n        alert($scope.message);\n\n    });\n}\n<\/code><\/pre>\n<\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p> <span class=\"d-none\" itemprop=\"commentCount\">1<\/span> <\/p>\n<\/div>\n<\/div>\n<p>solved How to upload image using angularjs php mysql <\/p>\n<p><script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-1088640234840270\" crossorigin=\"anonymous\"><\/script><br \/>\n<script><\/p>\n<p><\/script><\/div>\n<p>[ad_2]<\/p>\n<h1>Solved: How to Upload Image Using AngularJS, PHP, and MySQL<\/h1>\n<p>Uploading images using AngularJS, PHP, and MySQL can be a daunting task. Fortunately, there are a few simple steps that can help make the process easier. In this article, we\u2019ll walk through the steps of uploading an image using AngularJS, PHP, and MySQL.<\/p>\n<h2>Step 1: Create the HTML Form<\/h2>\n<p>The first step is to create an HTML form that will allow the user to select an image file to upload. The form should include an input field of type \u201cfile\u201d and a submit button. Here is an example of a basic HTML form:<\/p>\n<pre><code>&lt;form action=\"upload.php\" method=\"post\" enctype=\"multipart\/form-data\"&gt;\n  &lt;input type=\"file\" name=\"image\"&gt;\n  &lt;input type=\"submit\" value=\"Upload\"&gt;\n&lt;\/form&gt;\n<\/code><\/pre>\n<h2>Step 2: Create the PHP Script<\/h2>\n<p>The next step is to create a PHP script that will handle the image upload. The script should check to make sure the file is an image, and then move the file to a permanent location on the server. Here is an example of a basic PHP script:<\/p>\n<pre><code>&lt;?php\n  \/\/ Check if the file is an image\n  if (exif_imagetype($_FILES['image']['tmp_name']) != IMAGETYPE_JPEG) {\n    echo \"Error: File is not an image.\";\n    exit;\n  }\n\n  \/\/ Move the file to a permanent location\n  move_uploaded_file($_FILES['image']['tmp_name'], \"uploads\/{$_FILES['image']['name']}\");\n?&gt;\n<\/code><\/pre>\n<h2>Step 3: Store the Image in the Database<\/h2>\n<p>The final step is to store the image in the database. This can be done using a simple SQL query. Here is an example of a basic SQL query:<\/p>\n<pre><code>INSERT INTO images (name, path) VALUES ('{$_FILES['image']['name']}', 'uploads\/{$_FILES['image']['name']}');\n<\/code><\/pre>\n<p>And that\u2019s it! With these three simple steps, you can easily upload an image using AngularJS, PHP, and MySQL.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction [ad_1] This tutorial will provide a step-by-step guide on how to upload an image using AngularJS, PHP, and MySQL. We will cover the basics of setting up the environment, creating the necessary HTML and JavaScript code, and connecting to the database. We will also discuss how to store the image in the database and &#8230; <a title=\"[Solved] How to upload image using angularjs php mysql\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/\" aria-label=\"More on [Solved] How to upload image using angularjs php mysql\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[930,340,339],"class_list":["post-209","post","type-post","status-publish","format-standard","hentry","category-solved","tag-angularjs","tag-mysql","tag-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] How to upload image using angularjs php mysql - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How to upload image using angularjs php mysql - JassWeb\" \/>\n<meta property=\"og:description\" content=\"Introduction [ad_1] This tutorial will provide a step-by-step guide on how to upload an image using AngularJS, PHP, and MySQL. We will cover the basics of setting up the environment, creating the necessary HTML and JavaScript code, and connecting to the database. We will also discuss how to store the image in the database and ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-01T07:12:13+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How to upload image using angularjs php mysql\",\"datePublished\":\"2022-11-01T07:12:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/\"},\"wordCount\":498,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"angularjs\",\"mysql\",\"php\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/\",\"name\":\"[Solved] How to upload image using angularjs php mysql - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-11-01T07:12:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How to upload image using angularjs php mysql\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How to upload image using angularjs php mysql - JassWeb","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:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How to upload image using angularjs php mysql - JassWeb","og_description":"Introduction [ad_1] This tutorial will provide a step-by-step guide on how to upload an image using AngularJS, PHP, and MySQL. We will cover the basics of setting up the environment, creating the necessary HTML and JavaScript code, and connecting to the database. We will also discuss how to store the image in the database and ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/","og_site_name":"JassWeb","article_published_time":"2022-11-01T07:12:13+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How to upload image using angularjs php mysql","datePublished":"2022-11-01T07:12:13+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/"},"wordCount":498,"commentCount":0,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["angularjs","mysql","php"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/","name":"[Solved] How to upload image using angularjs php mysql - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-11-01T07:12:13+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-upload-image-using-angularjs-php-mysql-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How to upload image using angularjs php mysql"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/209","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=209"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/209\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=209"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=209"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=209"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}