Jump to content
  • 0

Помогите, пожалуйста, НЕ РАБОТАЕТ(


КАТРИН
 Share

Question

Здравствуйте, скажите, пожалуйста, почему скрипт не работает?

Нужно, чтобы данные, полученные из формы переносились в базу данных, а потом выводились на страницу в табличку без обновления страницы.

Вот скрипт:

<html>

<head>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js">

</script>

<script type="text/javascript">

$(document).ready(function(){

$("#but").click(function(){

$.post('res.php',

{

'mess' : $('#mess').val()

}, function(data){

$('#tab').html(data);

});

});

</script>

</head>

<body>

<form action='res.php' method='post'/>

<input type='text' name='mess' size='80'id='mess' />

<input type='submit' value='Сказать' id="but"/>

</form>

<table border="1">

<tr><td width="200" height="200"><div id="tab"></div></td></tr></table>

</body>

</html>

вот файл res.php:

<html>

<head>

<META HTTP-EQUIV="REFRESH" CONTENT="3">

</head>

<body>

<?php

$db = mysql_connect('localhost', "root", "");

mysql_select_db('basa', $db);

if( isset( $_POST['mess'] ))

{

mysql_query("INSERT INTO `table` (mess) VALUES('" . $_POST["mess"] . "')");

}

$result = mysql_query("SELECT * FROM `table`", $db);

$num = mysql_num_rows($result);

for ($i = 0; $i < $num; $i++)

{

$row = mysql_fetch_array($result);

echo $row['mess'], '<br />';

}

?>

</body>

</html>

Помогите, плз(

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Здравствуйте, скажите, пожалуйста, почему скрипт не работает?

Нужно, чтобы данные, полученные из формы переносились в базу данных, а потом выводились на страницу в табличку без обновления страницы.

Вот скрипт:

<html>

<head>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js">

</script>

<script type="text/javascript">

$(document).ready(function(){

$("#but").click(function(){

$.post('res.php',

{

'mess' : $('#mess').val()

}, function(data){

$('#tab').html(data);

});

});

</script>

</head>

<body>

<form action='res.php' method='post'/>

<input type='text' name='mess' size='80'id='mess' />

<input type='submit' value='Сказать' id="but"/>

</form>

<table border="1">

<tr><td width="200" height="200"><div id="tab"></div></td></tr></table>

</body>

</html>

вот файл res.php:

<html>

<head>

<META HTTP-EQUIV="REFRESH" CONTENT="3">

</head>

<body>

<?php

$db = mysql_connect('localhost', "root", "");

mysql_select_db('basa', $db);

if( isset( $_POST['mess'] ))

{

mysql_query("INSERT INTO `table` (mess) VALUES('" . $_POST["mess"] . "')");

}

$result = mysql_query("SELECT * FROM `table`", $db);

$num = mysql_num_rows($result);

for ($i = 0; $i < $num; $i++)

{

$row = mysql_fetch_array($result);

echo $row['mess'], '<br />';

}

?>

</body>

</html>

Помогите, плз(

А ЭТО можно осуществить LOAD методом?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy