NEWS AT A GLANCE
'Info Edge' and Others Invest in E-Commerce Platform 'ShopKirana'
'Mumbai Angels Network' Invests in Startup 'Fric Bergen'
Walmart India Shuffles Top Management, Appoints New Head
Priyanka Chopra-Backed 'Bumble' Debuts in India
Zomato signs in 'Durga Raghunath' to accelerate growth in businesses>

inshort_submit

[insert_php]

session_start();

$server_name = "localhost";
$server_usr = "commujlk_iaae";
$server_pass = 'iaae@cg';
$databse = "commujlk_iaae";

$ufname = $_SESSION["name"] ;
$usurname = $_SESSION["surname"];
$uemailid = $_SESSION["emailid"] ;

$line1 = $_POST['first_line'];
$line2 = $_POST['second_line'];
$line3 = $_POST['third_line'];
$line4 = $_POST['fourth_line'];
$line5 = $_POST['fifth_line'];

$con = mysqli_connect($server_name,$server_usr,$server_pass);

if(!$con)
die("Connection Error con: ");
else
$db_con = mysqli_select_db($con, $databse );
if (!$db_con)
die("Connection Error DB : ");

mysqli_query( $con ,"INSERT INTO inshorts_details (name,surname,email_id,first_line,second_line,third_line,fourth_line,fifth_line) VALUES('$ufname','$usurname ','$uemailid','$line1','$line2','$line3','$line4','$line5')" )
or die(mysqli_error($con));

echo "";

header("Location: http://iamanentrepreneur.in");
[/insert_php]