<?php
error_reporting(E_ALL);
for($i=0; $i<3; $i++)
{
for($j=0; $j<3; $j++)
{
// Вот эти строчки ниже ошибка в них, но как правильно??
$text='input['.$i.']['.$j.']';
$inpute[$i][$j] = !empty($_POST[$text]) ? $_POST[$text] : null;
if ($inpute[$i][$j]=='12')
{
echo 'Ura';
}
}
}
?>
<style type="text/css">
#container{
width: 120px;
}
#container input[type=text]{
width: 40px;
}
</style>
<form action="" method="post">
<div id='container'>
<?php
for($i=0; $i<3; $i++)
{
for($j=0; $j<3; $j++)
{
echo '<input type="text" name="input['.$i.']['.$j.']" value ="'. htmlspecialchars($inpute[$i][$j]) .'" />';
}
}
?>
</div>
Небольшая прога PHP
Мне нужно считывать оттуда данные, но почемуто через пост нечего не передаваться, что то сделал не так(((
Код:
Код:
<?php
error_reporting(E_ALL);
for($i=0; $i<3; $i++)
{
for($j=0; $j<3; $j++)
{
$text="input".$i.$j;
$inpute[$i][$j] = !empty($_POST[$text]) ? $_POST[$text] : null;
if ($inpute[$i][$j]=='12')
{
echo 'Ura';
}
}
}
?>
<style type="text/css">
#container{
width: 120px;
}
#container input[type=text]{
width: 40px;
}
</style>
<form action="" method="post">
<div id='container'>
<?php
for($i=0; $i<3; $i++)
{
for($j=0; $j<3; $j++)
{
echo "<input type=\"text\" name=\"input".$i.$j."\" value =\"". htmlspecialchars($inpute[$i][$j]) ."\" />";
}
}
?>
<input type="submit" value="OK">
</form>
</div>
error_reporting(E_ALL);
for($i=0; $i<3; $i++)
{
for($j=0; $j<3; $j++)
{
$text="input".$i.$j;
$inpute[$i][$j] = !empty($_POST[$text]) ? $_POST[$text] : null;
if ($inpute[$i][$j]=='12')
{
echo 'Ura';
}
}
}
?>
<style type="text/css">
#container{
width: 120px;
}
#container input[type=text]{
width: 40px;
}
</style>
<form action="" method="post">
<div id='container'>
<?php
for($i=0; $i<3; $i++)
{
for($j=0; $j<3; $j++)
{
echo "<input type=\"text\" name=\"input".$i.$j."\" value =\"". htmlspecialchars($inpute[$i][$j]) ."\" />";
}
}
?>
<input type="submit" value="OK">
</form>
</div>