PHP Classes

File: detect.html

Recommend this page to a friend!
  Classes of adriano ghezzi   PHP Yandex Translate API Wrapper   detect.html   Download  
File: detect.html
Role: Auxiliary data
Content type: text/plain
Description: detect lang
Class: PHP Yandex Translate API Wrapper
Translate text between languages using Yandex API
Author: By
Last change:
Date: 7 years ago
Size: 1,065 bytes
 

Contents

Class file image Download
<?php ?> <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap language detection</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <div class="row"> <a href="/"> <button class="btn-primary pull-left"> back </button> </a> </div> <div class="container"> <form action="/examples/detected.php" method="post" class="form-horizontal"> <div class="form-group"> <label for="text">one or more words to detect language</label> <textarea class="form-control" id="text" name="text"></textarea> </div> <button type="submit" class="btn btn-default">Submit</button> </form> </div> </body> </html>