как уместиться в один файл?

maxmax

Guest
как уместиться в один файл?

Здравствуйте! Есть 2 файла. Будьте добры, подскажите как сделать это всё в одном файле. Читал, что как-то через PHP_SELF?....., но не пойму как - у меня форма всё равно остаётся.

index.php
<?php
mysql_connect () or die ('no connect db');
mysql_query('create database volk');
mysql_select_db('volk') or die ('no select db');
mysql_query('create table clients (name varchar (25))') or (mysql_query('select * from clients') or die ('no select clients'));
mysql_close();
?>
<form action=insert.php method=post>
<input type=text name=name>
<input type=submit name=submit>

insert.php
<?php
mysql_connect();
mysql_select_db('volk') or die ('not select db');
$result=mysql_query('select * from clients') or die ('not select');
mysql_query("insert into clients values ('$name')") or die ('not insert values');
echo "Aaiiua iieo?aiu!";
?>
 

Alkinoy

Guest
index.php
PHP:
<?php
if (isset($_POST["name"]))
{

  mysql_connect();
  mysql_select_db('volk') or die ('not select db');
  $result=mysql_query('select * from clients') or die ('not select');
  mysql_query("insert into clients values ('$name')") or die ('not   insert values');
  echo "Aaiiua iieo?aiu!";
  exit;
}

mysql_connect () or die ('no connect db');
mysql_query('create database volk');
mysql_select_db('volk') or die ('no select db');
mysql_query('create table clients (name varchar (25))') or (mysql_query('select * from clients') or die ('no select clients'));
mysql_close();
?>
<form action=index.php method=post>
<input type=text name=name>
<input type=submit name=submit>
 
Сверху