<?php
if (!empty($_POST))
{
$test = $_POST['test'];
}
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Вывод в переменную</title>
<meta charset="utf-8">
<style type="text/css">
.content {
width: 500px;
height: 300px;
}
</style>
</head>
<body>
<form method="post" action="">
<textarea class="content" name="test"></textarea><br>
<input type="submit" value="Записать в переменную" />
</form>
<p><?php echo $test; ?></p>
</body>
</html>
<textarea class="content" name="test"></textarea>
<form method="post" action="">
<textarea class="content" name="test"></textarea>
<input type="submit" value="Записать в переменную" />
</form>
if (!empty($_POST))
{
$test = $_POST['test'];
}
хочу по программировать на машинном коде
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function(){
$('#button').click(function(){
$.ajax({
type: "POST",
url: '/your-file.php',
success: function(data) {
alert("Выполнился");
$('#result').html(data);
}
});
});
});
</script>
<div id = "button"> Нажми меня </div>
<div id = "result"> Результат </div>
<?php
echo file_get_contents($filename);
?>
function mb_str_split($string) {
$length = mb_strlen($string, "utf-8");
$i = 0;
$arr = array();
while ($i < $length) {
$rep = mb_substr($string,$i,1,"utf-8");
array_splice($arr, $i, 1, $rep);
$i++;
}
return $arr;
}
function transcode($string) {
$string = mb_str_split($string);
$string = array_map(function($a) {
$result = unpack('N', mb_convert_encoding($a, 'UCS-4BE', 'UTF-8'));
if (is_array($result) === true) {
return $result[1];
}
}, $string);
return implode("", $string);
}
$string = "аАБВГДЕЁЖЗ";
echo transcode($string);