{"id":5197,"date":"2022-08-27T05:05:15","date_gmt":"2022-08-26T23:35:15","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/"},"modified":"2022-08-27T05:05:15","modified_gmt":"2022-08-26T23:35:15","slug":"solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/","title":{"rendered":"[Solved] How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-49569751\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"49569751\" data-parentid=\"49568415\" 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<pre><code>include 'connection.php';\ninclude 'phpmailer\/PHPMailerAutoload.php';    \n$name=$_POST['details'];\n$location=$_POST['from'];\n$city=$_POST['to'];\n$state=$_POST['message'];\n$branch=$_POST['client'];\n$email=$_POST['email'];\n$date=date('Y-m-d');\n$columnHeader=\"\";\n$columnHeader =  \"Details\" . \"\\t\" .\"From Date\" . \"\\t\". \"To Date\" . \"\\t\". \"Message\" .  \"\\t\". \"Hotel\" . \"\\t\" . \"Email\" . \"\\t\" . \"Date\" ;\n$setData=\"\";\n$newarray = array('details'=&gt;$name,'fromdate'=&gt;$location,'todate'=&gt;$city,'message'=&gt;$state,'hotel'=&gt;$branch,'email'=&gt;$email,'date'=&gt;$date);\n$rowData=\"\";\nforeach ($newarray as $value) {\n\n    $value=\"\"\" . $value . '\"' . \"\\t\";\n    $rowData .= $value;\n\n}\n$setData .= trim($rowData) . \"\\n\";\n$filename=\"filename\";\n$file=\"Directory\/\".$filename.'.extension';\n\n$mmm= ucwords($columnHeader).\"\\n\".$setData;\n$fo = fopen($file,\"w\");\n\nfwrite($fo,$mmm);\n$inser=\"insert into tablename(field1,field2,field3,field4,field5,field6,field7,field8,field9)values ('$name','$location','$city','$state',$hotel3,'$email','$date','Nothing','pending')\";\n$g=sqlsrv_query($conn,$inser);\nif($g)\n{\n\n\n    $from_name=\"Client\";\n    $to = \"sendingmailid.com\"; \/\/ this is the sender's Email address\n\n    $subject=\"Subject\";        \n    $mail = new PHPMailer();  \/\/ create a new object\n    $mail-&gt;IsSMTP(); \/\/ enable SMTP\n    $mail-&gt;SMTPDebug = 0;  \/\/ debugging\n    $mail-&gt;SMTPAuth = true;  \/\/ authentication enabled\n    $mail-&gt;SMTPSecure=\"ssl\"; \/\/ secure transfer enabled REQUIRED for Gmail\n    $mail-&gt;Host=\"*********\";\n    $mail-&gt;Port = *;\n    $mail-&gt;Username = \"************\";\n    $mail-&gt;Password = \"*************\";\n    $mail-&gt;SetFrom($email,$from_name,$email);\n    $mail-&gt;Subject = $from_name;\n    $mail-&gt;AddAttachment($file);\n    $mail-&gt;Body = \"Message From: \".$email.\"\\n\\n\".\"Subject: \".$subject;\n    $mail-&gt;AddAddress($to);\n    if(!$mail-&gt;Send()) {\n\n        $error=\"Mail error: \".$mail-&gt;ErrorInfo;\n        return false;\n    } else {\n        ?&gt;\n    &lt;script&gt;\n        window.location='filename.php';\n\n        alert(\"We will Contact you soon\");\n    &lt;\/script&gt;\n    &lt;?php\n        $error=\"Message sent!\";\n        return true;\n    }\n\n}\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] include &#8216;connection.php&#8217;; include &#8216;phpmailer\/PHPMailerAutoload.php&#8217;; $name=$_POST[&#8216;details&#8217;]; $location=$_POST[&#8216;from&#8217;]; $city=$_POST[&#8216;to&#8217;]; $state=$_POST[&#8216;message&#8217;]; $branch=$_POST[&#8216;client&#8217;]; $email=$_POST[&#8217;email&#8217;]; $date=date(&#8216;Y-m-d&#8217;); $columnHeader=&#8221;&#8221;; $columnHeader = &#8220;Details&#8221; . &#8220;\\t&#8221; .&#8221;From Date&#8221; . &#8220;\\t&#8221;. &#8220;To Date&#8221; . &#8220;\\t&#8221;. &#8220;Message&#8221; . &#8220;\\t&#8221;. &#8220;Hotel&#8221; . &#8220;\\t&#8221; . &#8220;Email&#8221; . &#8220;\\t&#8221; . &#8220;Date&#8221; ; $setData=&#8221;&#8221;; $newarray = array(&#8216;details&#8217;=&gt;$name,&#8217;fromdate&#8217;=&gt;$location,&#8217;todate&#8217;=&gt;$city,&#8217;message&#8217;=&gt;$state,&#8217;hotel&#8217;=&gt;$branch,&#8217;email&#8217;=&gt;$email,&#8217;date&#8217;=&gt;$date); $rowData=&#8221;&#8221;; foreach ($newarray as $value) { $value=&#8221;&#8221;&#8221; . $value . &#8216;&#8221;&#8216; . &#8230; <a title=\"[Solved] How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/\" aria-label=\"More on [Solved] How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[339],"class_list":["post-5197","post","type-post","status-publish","format-standard","hentry","category-solved","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 can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed] - 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-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] include &#039;connection.php&#039;; include &#039;phpmailer\/PHPMailerAutoload.php&#039;; $name=$_POST[&#039;details&#039;]; $location=$_POST[&#039;from&#039;]; $city=$_POST[&#039;to&#039;]; $state=$_POST[&#039;message&#039;]; $branch=$_POST[&#039;client&#039;]; $email=$_POST[&#039;email&#039;]; $date=date(&#039;Y-m-d&#039;); $columnHeader=&quot;&quot;; $columnHeader = &quot;Details&quot; . &quot;t&quot; .&quot;From Date&quot; . &quot;t&quot;. &quot;To Date&quot; . &quot;t&quot;. &quot;Message&quot; . &quot;t&quot;. &quot;Hotel&quot; . &quot;t&quot; . &quot;Email&quot; . &quot;t&quot; . &quot;Date&quot; ; $setData=&quot;&quot;; $newarray = array(&#039;details&#039;=&gt;$name,&#039;fromdate&#039;=&gt;$location,&#039;todate&#039;=&gt;$city,&#039;message&#039;=&gt;$state,&#039;hotel&#039;=&gt;$branch,&#039;email&#039;=&gt;$email,&#039;date&#039;=&gt;$date); $rowData=&quot;&quot;; foreach ($newarray as $value) { $value=&quot;&quot;&quot; . $value . &#039;&quot;&#039; . ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-26T23:35:15+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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed]\",\"datePublished\":\"2022-08-26T23:35:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/\"},\"wordCount\":56,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"php\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/\",\"name\":\"[Solved] How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-08-26T23:35:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed]\"}]},{\"@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=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"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 can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed] - 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-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed] - JassWeb","og_description":"[ad_1] include 'connection.php'; include 'phpmailer\/PHPMailerAutoload.php'; $name=$_POST['details']; $location=$_POST['from']; $city=$_POST['to']; $state=$_POST['message']; $branch=$_POST['client']; $email=$_POST['email']; $date=date('Y-m-d'); $columnHeader=\"\"; $columnHeader = \"Details\" . \"t\" .\"From Date\" . \"t\". \"To Date\" . \"t\". \"Message\" . \"t\". \"Hotel\" . \"t\" . \"Email\" . \"t\" . \"Date\" ; $setData=\"\"; $newarray = array('details'=&gt;$name,'fromdate'=&gt;$location,'todate'=&gt;$city,'message'=&gt;$state,'hotel'=&gt;$branch,'email'=&gt;$email,'date'=&gt;$date); $rowData=\"\"; foreach ($newarray as $value) { $value=\"\"\" . $value . '\"' . ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/","og_site_name":"JassWeb","article_published_time":"2022-08-26T23:35:15+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed]","datePublished":"2022-08-26T23:35:15+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/"},"wordCount":56,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["php"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/","name":"[Solved] How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-08-26T23:35:15+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-generate-an-excel-file-and-save-it-into-the-local-directory-and-send-it-with-a-mail-as-an-attachment-using-phpmailer-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How can i generate an excel file and save it into the local directory and send it with a mail as an attachment using phpmailer [closed]"}]},{"@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=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","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\/5197","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=5197"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/5197\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=5197"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=5197"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=5197"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}