<\/span><\/h2>\n\n\n\n<!DOCTYPE html>\n<html>\n\t<head>\n\t\t<!-- Page Title -->\n\t\t<title>MOVIES AND ACTORS<\/title>\n\t\t<link rel="stylesheet" href="mystyle.css">\n\t<\/head>\n\t<body>\n\t\t<!-- Page Header -->\n\t\t<h1>MOVIES AND ACTORS HTML PHP MYSQL DATABASE<\/h1>\n\t\t<!-- Add Movie to database page link -->\n\t\t<a href="insertMovie.php">Add Movie<\/a><br><br>\n\t\t<!-- Add Actor to database page link -->\n\t\t<a href="insertActor.php">Add Actor<\/a><br><br>\n\t\t<!-- Add Actor to database page link -->\n\t\t<a href="insertActorToAMovie.php">Add Actor To A Movie<\/a><br><br>\n\t\t<!-- View Movie Actors -->\n\t\t<a href="viewMovieActors.php">View Movie Actors<\/a>\n\t<\/body>\n<\/html>\n<\/pre>\n\n\n\n <\/figure>\n\n\n\n<\/span>insertMovie.php<\/span><\/h2>\n\n\n\n<!DOCTYPE html>\n<html>\n\t<head>\n\t\t<title>Movie<\/title>\n\t\t<link rel="stylesheet" href="mystyle.css">\n\t<\/head>\n\t<body>\n\t\t<!-- HTML Form -->\n\t\t<form action="\/MoviesActorsPHPMySQLDatabase\/actionPage.php"> \n\t\t\t<fieldset> \n\t\t\t\t<legend>\n\t\t\t\t\tMovie information: \n\t\t\t\t<\/legend>\n\t\t\t\tMovie Name:\n\t\t\t\t<!-- Name Input Field -->\n\t\t\t\t<input type="text" name="name" value="" required><br><br>\n\t\t\t\t<!-- Submit button field -->\n\t\t\t\t<input type="submit" name="submitMovie" class="button" value="submit"> \n\t\t\t<\/fieldset> \n\t\t\t\n\t\t<\/form>\n\t<\/body>\n<\/html>\n<\/pre>\n\n\n\n <\/figure>\n\n\n\n<\/span>insertActor.php<\/span><\/h2>\n\n\n\n<!DOCTYPE html>\n<html>\n\t<head>\n\t\t<title>Actor<\/title>\n\t\t<link rel="stylesheet" href="mystyle.css">\n\t<\/head>\n\t<body>\n\t\t<!-- HTML Form -->\n\t\t<form action="\/MoviesActorsPHPMySQLDatabase\/actionPage.php"> \n\t\t\t<fieldset> \n\t\t\t\t<legend>\n\t\t\t\t\tActor information: \n\t\t\t\t<\/legend>\n\t\t\t\tActor Name:\n\t\t\t\t<!-- Name Input Field -->\n\t\t\t\t<input type="text" name="name" value="" required><br><br>\n\t\t\t\t<!-- Submit button field -->\n\t\t\t\t<input type="submit" name="submitActor" class="button" value="submit"> \n\t\t\t<\/fieldset> \n\t\t\t\n\t\t<\/form>\n\t<\/body>\n<\/html>\n<\/pre>\n\n\n\n<\/h2>\n\n\n\n <\/figure>\n\n\n\n<\/span>insertActorToAMovie.php<\/span><\/h2>\n\n\n\n<?php\n\t\/\/ Mysql Database connection\n\t\/\/ Server name , username, password, Database name\n\t$databaseConnection = mysqli_connect("localhost","root","","moviesactors");\n\t\n\t\/\/ Check database connection status\n\tif (mysqli_connect_errno()){\n\t\techo "Failed to connect to MySQL: " . mysqli_connect_error();\n\t}\n?>\n<!DOCTYPE html>\n<html>\n\t<head>\n\t\t<title>Actor<\/title>\n\t\t<link rel="stylesheet" href="mystyle.css">\n\t<\/head>\n\t<body>\n\t\t<!-- HTML Form -->\n\t\t<form action="\/MoviesActorsPHPMySQLDatabase\/actionPage.php">\n\t\t\t<fieldset>\n\t\t\t\t<legend>\n\t\t\t\t\tActor\/Movie information:\n\t\t\t\t<\/legend>\n\t\t\t\tActor Name:\n\t\t\t\t<!-- Name select Input Field -->\n\t\t\t\t<?php\n\t\t\t\t\t$query = "SELECT * FROM `actors` WHERE 1";\n\t\t\t\t\t$res = mysqli_query($databaseConnection, $query);\n\t\t\t\t\techo "<select name = 'nameA'>";\n\t\t\t\t\twhile (($row = mysqli_fetch_array($res)) != null)\n\t\t\t\t\t{\n\t\t\t\t\t\techo "<option value = '{$row['id']}'";\n\t\t\t\t\t\techo ">{$row['name']}<\/option>";\n\t\t\t\t\t}\n\t\t\t\t\techo "<\/select><br><br>";\n\t\t\t\t?>\n\t\t\t\tMovie Name:\n\t\t\t\t<!-- Actors select Input Field -->\n\t\t\t\t\n\t\t\t\t<?php\n\t\t\t\t\t$query = "SELECT * FROM `movies` WHERE 1";\n\t\t\t\t\t$res = mysqli_query($databaseConnection, $query);\n\t\t\t\t\techo "<select name = 'nameM'>";\n\t\t\t\t\twhile (($row = mysqli_fetch_array($res)) != null)\n\t\t\t\t\t{\n\t\t\t\t\t\t\n\t\t\t\t\t\techo "<option value = '{$row['id']}'";\n\t\t\t\t\t\techo ">{$row['name']}<\/option>";\n\t\t\t\t\t}\n\t\t\t\t\techo "<\/select><br><br>";\n\t\t\t\t?>\n\t\t\t\t\n\t\t\t\t<!-- Submit button field -->\n\t\t\t\t<input type="submit" name="submitActorMovie" class="button" value="submit">\n\t\t\t<\/fieldset>\n\t\t\t\n\t\t<\/form>\n\t<\/body>\n<\/html>\t\t\n<\/pre>\n\n\n\n<\/h2>\n\n\n\n <\/figure>\n\n\n\n <\/figure>\n\n\n\n<\/span>viewMovieActors.php<\/span><\/h2>\n\n\n\n<?php\n\t\/\/ Mysql Database connection\n\t\/\/ Server name , username, password, Database name\n\t$databaseConnection = mysqli_connect("localhost","root","","moviesactors");\n\t\n\t\/\/ Check database connection status\n\tif (mysqli_connect_errno()){\n\t\techo "Failed to connect to MySQL: " . mysqli_connect_error();\n\t}\n?>\n<!DOCTYPE html>\n<html>\n\t<head>\n\t\t<title>Movie Actors<\/title>\n\t\t<link rel="stylesheet" href="mystyle.css">\n\t<\/head>\n\t<body>\n\t\t<!-- HTML Form -->\n\t\t<form action="">\n\t\t\t<fieldset>\n\t\t\t\t<legend>\n\t\t\t\t\tMovie Actors information:\n\t\t\t\t<\/legend>\n\t\t\t\tMovie Name:\n\t\t\t\t<!-- Actors select Input Field -->\n\t\t\t\t\n\t\t\t\t<?php\n\t\t\t\t\t$query = "SELECT * FROM `movies` WHERE 1";\n\t\t\t\t\t$res = mysqli_query($databaseConnection, $query);\n\t\t\t\t\techo "<select name = 'nameM'>";\n\t\t\t\t\twhile (($row = mysqli_fetch_array($res)) != null)\n\t\t\t\t\t{\n\t\t\t\t\t\techo "<option value = '{$row['name']}'";\n\t\t\t\t\t\techo ">{$row['name']}<\/option>";\n\t\t\t\t\t}\n\t\t\t\t\techo "<\/select><br><br>";\n\t\t\t\t?>\n\t\t\t\t\n\t\t\t\t<!-- Submit button field -->\n\t\t\t\t<input type="submit" name="submitShowMovieActors" class="button" value="Show Movie Actors">\n\t\t\t<\/fieldset>\n\t\t\t\n\t\t\t\n\t\t<\/form>\n\t\t<?php\n\t\t\tif (isset($_GET['submitShowMovieActors'])) {\n\t\t\t\t\n\t\t\t\t\/\/ Store data into the variables\n\t\t\t\t$m_name = $_GET['nameM'];\n\t\t\t\t\n\t\t\t\t\/\/ Storing data into the variables and Escaping special characters.\n\t\t\t\t$nameM = mysqli_real_escape_string($databaseConnection, $m_name);\n\t\t\t\t\n\t\t\t\t\/\/ query\n\t\t\t\t$selectMovieActorsQuery = "SELECT\n\t\t\t\tactors.name As Actors\n\t\t\t\tFROM movies\n\t\t\t\tJOIN moviesactors\n\t\t\t\tON movies.id = moviesactors.movies_id\n\t\t\t\tJOIN actors\n\t\t\t\tON actors.id = moviesactors.actors_id\n\t\t\t\tWHERE movies.name = '$nameM' ";\n\t\t\t\t\/\/ results\n\t\t\t\t$res = mysqli_query($databaseConnection, $selectMovieActorsQuery);\n\t\t\t\tif ($res) {\n\t\t\t\t\t# code...\n\t\t\t\t\t$rowcount=mysqli_num_rows($res);\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\tif ($rowcount > 0) {\n\t\t\t\t\t# code...\n\t\t\t\t\techo "<ul>";\n\t\t\t\t\twhile( ($row = mysqli_fetch_array($res)) != null )\n\t\t\t\t\t{\n\t\t\t\t\t\techo "<li class=''><a href='#'>";\n\t\t\t\t\t\techo $row['Actors'];\n\t\t\t\t\t\techo "<\/a><\/li>";\n\t\t\t\t\t}\n\t\t\t\t\techo "<\/ul>";\n\t\t\t\t\t\n\t\t\t\t\t} else {\n\t\t\t\t\techo "No Actors Found For The Selected Movie!";\n\t\t\t\t\texit();\n\t\t\t\t}\n\t\t\t}\n\t\t?>\n\t<\/body>\n<\/html>\t\t\t\t\t\t\n<\/pre>\n\n\n\n <\/figure>\n\n\n\n <\/figure>\n\n\n\n <\/figure>\n\n\n\n<\/span>actionPage.php<\/span><\/h2>\n\n\n\n<?php\n\t\n\t\/\/ Mysql Database connection\n\t\/\/ Server name , username, password, Database name\n\t$databaseConnection = mysqli_connect("localhost","root","","moviesactors");\n\t\n\t\/\/ Check database connection status\n\tif (mysqli_connect_errno()){\n\t\techo "Failed to connect to MySQL: " . mysqli_connect_error();\n\t}\n\t\n\t\/\/If submit button is clicked\n\tif (isset($_GET['submitMovie'])) {\n\t\t\n\t\t\/\/ Store data into the variables\n\t\t$m_name = $_GET['name'];\n\t\t\n\t\t\/\/ Storing data into the variables and Escaping special characters.\n\t\t$name = mysqli_real_escape_string($databaseConnection, $m_name);\n\t\t\n\t\t\n\t\t\/\/ Insert query\n\t\t$sql = "INSERT INTO `movies` (name) VALUES ('$name')";\n\t\t\n\t\t\/\/ Inserting data into users table\n\t\t$insert_data = mysqli_query($databaseConnection, $sql);\n\t\t\n\t\t\/\/ Check if data inserted\n\t\tif($insert_data){\n\t\t\techo "Data inserted successfully.";\n\t\t}\n\t\t\/\/ else data not inserted\n\t\telse{\n\t\t\techo "Something error occurred";\n\t\t}\n\t} else \/\/If submit\/submitActor button is clicked\n\tif (isset($_GET['submitActor'])) {\n\t\t\n\t\t\/\/ Store data into the variables\n\t\t$m_name = $_GET['name'];\n\t\t\n\t\t\/\/ Storing data into the variables and Escaping special characters.\n\t\t$name = mysqli_real_escape_string($databaseConnection, $m_name);\n\t\t\n\t\t\n\t\t\/\/ Insert query\n\t\t$sql = "INSERT INTO `actors` (name) VALUES ('$name')";\n\t\t\n\t\t\/\/ Inserting data into users table\n\t\t$insert_data = mysqli_query($databaseConnection, $sql);\n\t\t\n\t\t\/\/ Check if data inserted\n\t\tif($insert_data){\n\t\t\techo "Data inserted successfully.";\n\t\t}\n\t\t\/\/ else data not inserted\n\t\telse{\n\t\t\techo "Something error occurred";\n\t\t}\n\t} else \/\/If submit\/submitActorMovie button is clicked\n\tif (isset($_GET['submitActorMovie'])) {\n\t\t\n\t\t\/\/ Store data into the variables\n\t\t$a_name = $_GET['nameA'];\n\t\t$m_name = $_GET['nameM'];\n\t\t\n\t\t\/\/ Storing data into the variables and Escaping special characters.\n\t\t$nameA = mysqli_real_escape_string($databaseConnection, $a_name);\n\t\t$nameM = mysqli_real_escape_string($databaseConnection, $m_name);\n\t\t\n\t\t\/\/ Check If Exists query\n\t\t$sqlCheckIfExists = "SELECT `id`, `movies_id`, `actors_id` FROM `moviesactors` WHERE `movies_id` = '$nameM' AND `actors_id` = '$nameA' ";\n\t\t\/\/ data Exists users table\n\t\t$data_Exists = mysqli_query($databaseConnection, $sqlCheckIfExists);\n\t\tif ($data_Exists) {\n\t\t\t# code...\n\t\t\t$rowcount=mysqli_num_rows($data_Exists);\n\t\t\t\n\t\t}\n\t\tif ($rowcount > 0) {\n\t\t\t# code...\n\t\t\techo "That Actor Is Already Assigned To The Selected Movie!";\n\t\t\texit();\n\t\t\t\n\t\t\t} else {\n\t\t\t# code...\n\t\t\t\n\t\t\t\/\/ Insert query\n\t\t\t$sql = "INSERT INTO `moviesactors` (`movies_id`, `actors_id`) VALUES ('$m_name', '$a_name')";\n\t\t\t\n\t\t\t\/\/ Inserting data into users table\n\t\t\t$insert_data = mysqli_query($databaseConnection, $sql);\n\t\t\t\n\t\t\t\/\/ Check if data inserted\n\t\t\tif($insert_data){\n\t\t\t\techo "Data inserted successfully.";\n\t\t\t}\n\t\t\t\/\/ else data not inserted\n\t\t\telse{\n\t\t\t\techo "Something error occurred";\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t\n\t\n?>\t\t\t\t\n<\/pre>\n\n\n\n<\/span>mystyle.css<\/span><\/h2>\n\n\n\na:link, a:visited {\n background-color: white;\n color: black;\n border: 2px solid green;\n padding: 10px 20px;\n text-align: center;\n text-decoration: none;\n display: inline-block;\n}\n\na:hover, a:active {\n background-color: green;\n color: white;\n}\n.button {\n background-color: #4CAF50;\n border: none;\n color: white;\n padding: 15px 32px;\n text-align: center;\n text-decoration: none;\n display: inline-block;\n font-size: 16px;\n margin: 4px 2px;\n cursor: pointer;\n}\nfieldset {\n background-color: #eeeeee;\n}\n\nlegend {\n background-color: gray;\n color: white;\n padding: 5px 10px;\n}\n\ninput {\n margin: 5px;\n}\n\ninput[type=text], select {\n width: 100%;\n padding: 12px 20px;\n margin: 8px 0;\n display: inline-block;\n border: 1px solid #ccc;\n border-radius: 4px;\n box-sizing: border-box;\n}\n\n\nul {\n counter-reset: li; \n list-style: none; \n padding: 0;\n text-shadow: 0 1px 0 rgba(255,255,255,.5);\n}\n\nul a {\n position: relative;\n display: block;\n padding: .4em .4em .4em 2em;\n margin: .5em 0;\n background: #DAD2CA;\n color: #444;\n text-decoration: none;\n border-radius: .3em;\n transition: .3s ease-out;\n}\n\nul a:hover { background: #E9E4E0; }\nul a:hover:before { transform: rotate(360deg); }\nul a:before {\n content: counter(li);\n counter-increment: li;\n position: absolute;\n left: -1.3em;\n top: 50%;\n margin-top: -1.3em;\n background: #f9dd94;\n height: 2em;\n width: 2em;\n line-height: 2em;\n border: .3em solid #fff;\n text-align: center;\n font-weight: bold;\n border-radius: 2em;\n transition: all .3s ease-out;\n}\n<\/pre>\n\n\n\n<\/span>phpMyAdmin SQL Dump<\/span><\/h2>\n\n\n\n-- phpMyAdmin SQL Dump\n-- version 5.1.0\n-- https:\/\/www.phpmyadmin.net\/\n--\n-- Host: 127.0.0.1\n-- Generation Time: May 28, 2021 at 03:44 PM\n-- Server version: 10.4.19-MariaDB\n-- PHP Version: 8.0.6\n\nSET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";\nSTART TRANSACTION;\nSET time_zone = "+00:00";\n\n\n\/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT *\/;\n\/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS *\/;\n\/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION *\/;\n\/*!40101 SET NAMES utf8mb4 *\/;\n\n--\n-- Database: `moviesactors`\n--\nCREATE DATABASE IF NOT EXISTS `moviesactors` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;\nUSE `moviesactors`;\n\n-- --------------------------------------------------------\n\n--\n-- Table structure for table `actors`\n--\n\nCREATE TABLE `actors` (\n `id` int(11) NOT NULL,\n `name` varchar(30) NOT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n--\n-- Dumping data for table `actors`\n--\n\nINSERT INTO `actors` (`id`, `name`) VALUES(1, 'Jason Statham');\nINSERT INTO `actors` (`id`, `name`) VALUES(2, 'Josh Hartnett');\nINSERT INTO `actors` (`id`, `name`) VALUES(3, 'Holt McCallany');\nINSERT INTO `actors` (`id`, `name`) VALUES(6, 'Bruce Willis');\n\n-- --------------------------------------------------------\n\n--\n-- Table structure for table `movies`\n--\n\nCREATE TABLE `movies` (\n `id` int(11) NOT NULL,\n `name` varchar(30) NOT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n--\n-- Dumping data for table `movies`\n--\n\nINSERT INTO `movies` (`id`, `name`) VALUES(1, 'Wratt Of Man');\nINSERT INTO `movies` (`id`, `name`) VALUES(2, 'Green Honnet');\nINSERT INTO `movies` (`id`, `name`) VALUES(3, 'Clash Of Titans');\n\n-- --------------------------------------------------------\n\n--\n-- Table structure for table `moviesactors`\n--\n\nCREATE TABLE `moviesactors` (\n `id` int(11) NOT NULL,\n `movies_id` int(11) NOT NULL,\n `actors_id` int(11) NOT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n--\n-- Dumping data for table `moviesactors`\n--\n\nINSERT INTO `moviesactors` (`id`, `movies_id`, `actors_id`) VALUES(1, 1, 1);\nINSERT INTO `moviesactors` (`id`, `movies_id`, `actors_id`) VALUES(2, 1, 3);\nINSERT INTO `moviesactors` (`id`, `movies_id`, `actors_id`) VALUES(3, 1, 2);\nINSERT INTO `moviesactors` (`id`, `movies_id`, `actors_id`) VALUES(11, 1, 6);\nINSERT INTO `moviesactors` (`id`, `movies_id`, `actors_id`) VALUES(12, 2, 6);\n\n--\n-- Indexes for dumped tables\n--\n\n--\n-- Indexes for table `actors`\n--\nALTER TABLE `actors`\n ADD PRIMARY KEY (`id`);\n\n--\n-- Indexes for table `movies`\n--\nALTER TABLE `movies`\n ADD PRIMARY KEY (`id`);\n\n--\n-- Indexes for table `moviesactors`\n--\nALTER TABLE `moviesactors`\n ADD PRIMARY KEY (`id`),\n ADD KEY `Constraint_FK_Movies_ID` (`movies_id`),\n ADD KEY `Constraint_FK_actors_ID` (`actors_id`);\n\n--\n-- AUTO_INCREMENT for dumped tables\n--\n\n--\n-- AUTO_INCREMENT for table `actors`\n--\nALTER TABLE `actors`\n MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;\n\n--\n-- AUTO_INCREMENT for table `movies`\n--\nALTER TABLE `movies`\n MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;\n\n--\n-- AUTO_INCREMENT for table `moviesactors`\n--\nALTER TABLE `moviesactors`\n MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;\n\n--\n-- Constraints for dumped tables\n--\n\n--\n-- Constraints for table `moviesactors`\n--\nALTER TABLE `moviesactors`\n ADD CONSTRAINT `Constraint_FK_Movies_ID` FOREIGN KEY (`movies_id`) REFERENCES `movies` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,\n ADD CONSTRAINT `Constraint_FK_actors_ID` FOREIGN KEY (`actors_id`) REFERENCES `actors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;\nCOMMIT;\n\n\/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT *\/;\n\/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS *\/;\n\/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION *\/;\n\n<\/pre>\n\n\n\n<\/h2>\n\n\n\n<\/span>SCREENSHOTS<\/span><\/h2>\n\n\n\n<\/span>DATABASE DESIGN<\/span><\/h2>\n\n\n\n <\/figure>\n\n\n\n<\/span>DATABASE STRUCTURE AND TABLES<\/span><\/h2>\n\n\n\n <\/figure>\n\n\n\n <\/figure>\n\n\n\n <\/figure>\n\n\n\n <\/figure>\n","protected":false},"excerpt":{"rendered":"Insert Delete Read Data From Mysql Table Using PHP MySQL HTML Xampp Localhost(phpMyAdmin) DEMO VIDEO SOURCE CODE index.php insertMovie.php insertActor.php insertActorToAMovie.php viewMovieActors.php actionPage.php mystyle.css phpMyAdmin…<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[3283],"tags":[],"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/mauricemuteti.info\/wp-json\/wp\/v2\/posts\/4575"}],"collection":[{"href":"https:\/\/mauricemuteti.info\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mauricemuteti.info\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mauricemuteti.info\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mauricemuteti.info\/wp-json\/wp\/v2\/comments?post=4575"}],"version-history":[{"count":0,"href":"https:\/\/mauricemuteti.info\/wp-json\/wp\/v2\/posts\/4575\/revisions"}],"wp:attachment":[{"href":"https:\/\/mauricemuteti.info\/wp-json\/wp\/v2\/media?parent=4575"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mauricemuteti.info\/wp-json\/wp\/v2\/categories?post=4575"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mauricemuteti.info\/wp-json\/wp\/v2\/tags?post=4575"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}