|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/dev.outerorbittech.com/portfolio/table/ | |
|
Path: /home2/outerorb/dev.outerorbittech.com/portfolio/table/table6.php
Size: 524 B
Permissions: 0644
<?php
// function to add connection page code
include"../connection.php";
$qe="create table personal
(id int(5) auto_increment primary key,
ans1 text(5000) not null,
ans2 text(5000) not null,
ans3 text(5000) not null,
p1 text(5000) not null,
p2 text(5000) not null,
p3 text(5000) not null,
pans1 text(5000) not null,
pans2 text(5000) not null,
pans3 text(5000) not null)";
$sqe=mysqli_query($cn,$qe);
if($sqe)
{
echo 'created';
}
else
{
// function to show sql query error
echo'<br>'.mysqli_error($cn);
}
?>