$meta->updateGoogleVer($_POST['site_url_add'], $_POST['keyword']); echo "The token has been added"; ?> </p> </div> </div> <div class="container"> <div id="input"> <h1>Delete Google Verification Meta Tag</h1> <p>Input the URL below and the Google Site Verification token will be deleted</p> <form id="update" action="index.php"> <input name="site_url_delete" type="text" placeholder="Enter URL Here"/> <br/> <input id="submitDelete" type="submit" class="submit-btn" name="submitDelete" value="Submit"/> </form> <p id="output3"> <?php $meta = new Verification(); if ($meta->deleteGoogleVer($_POST['site_url_delete'])) { echo "The token has been added"; } else { echo "No token to delete"; } ?> </p> </div> </div> </body> </html>