hola muy buenos dias comunidad, les comento lo siguiente:
quiero obtener el valor de una variable de un formulario html a un archivo php, para poder poder utilizar el nombre y crear las tablas con el nobre que el usurio escriba,
OSEA QUE QUIERO UTILIZAR LA VARIABLE NAME DEL FORMULARIO PARA QUE LAS TABLAS SE RELACIONES CON LA NUEVA TABLA.
eSTA ES MI VISTA FORMULARIO....
<div class="container text-center">
<div class="page-header">
<h1>
<i class="fa fa-shopping-cart"></i>
EMPRESA <small>[Agregar empresa]</small>
</h1>
</div>
<div class="row">
<div class="col-md-offset-3 col-md-6">
<div class="page">
@if (count($errors) > 0)
@include('almacen.partials.errors')
@endif
{!! Form::open(['route'=>'empresa.store']) !!}
<div class="form-group">
<label for="name">Clave:</label>
{!!
Form::text(
'name',
null,
array(
'class'=>'form-control',
'placeholder' => 'Ingresa el Nombre...',
'autofocus' => 'autofocus'
)
)
!!}
</div>
<div class="form-group">
<label for="rfc">R.F.C.:</label>
{!!
Form::text(
'rfc',
null,
array(
'class'=>'form-control',
'placeholder' => 'Ingresa el RFC...',
)
)
!!}
</div>
<div class="form-group">
<label for="calle">Calle:</label>
{!!
Form::text(
'calle',
null,
array(
'class'=>'form-control',
'placeholder' => 'Ingresa la calle...',
)
)
!!}
</div>
<div class="form-group">
<label for="no_int">No. Interior:</label>
{!!
Form::text(
'no_int',
null,
array(
'class'=>'form-control',
'placeholder' => 'Ingresa el No. interior...',
)
)
!!}
</div>
<div class="form-group">
<label for="no_exte">No. Exterior:</label>
{!!
Form::text(
'no_exte',
null,
array(
'class'=>'form-control',
'placeholder' => 'Ingresa el No. Exterior...',
)
)
!!}
</div>
<div class="form-group">
{!! Form::submit('Guardar', array('class'=>'btn btn-primary'))!!}
<a href="{{ route('empresa.index') }}" class="btn btn-warning">Cancelar</a>
</div>
{!! Form::close() !!}
y lo quiero tomar de un archivo que se llama tablas-nuevas.php en donde voy a crear las tablas de la nueva empresa a crear
y este es mi archivo de creación de tablas php....
<?php
$servername = "******";
$username = "*******";
$password = "*******";
$dbname = "*********";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
a qui quiero utilizar la variable que obtenga del formulario
// sql to create table
$sql = "CREATE TABLE **variable**(
id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
firstname VARCHAR(30) NOT NULL,
lastname VARCHAR(30) NOT NULL,
email VARCHAR(50),
reg_date TIMESTAMP
)";
?>
A QUI ES DONDE QUIERO UTILIZAR LAS VARIABLES QUER OBTENGA DEL FORMULARIO DE ARRIBA
de antemano muchas gracias que tengan un excelente día