Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at index.php:1) in index.php on line 2
<?php
session_start();
$errorMessage = '';
if($submitted_by_user=$_POST['submitted_by_user']=='yes')
{
echo "User: ".$submitted_by_user;
include("database_connector.php");
$user_id = $_POST['user_id'];
//$password = $_POST['password'];
$cmd=mysql_query("select * from student_personal where reg_no='$user_id'");
if(!$cmd)
I get the databases from C:\wamp\bin\mysql\mysql5.1.36\data in windows.
Where are those databases in linux?
I can use databases in linux from terminal using
mysql -u root -p
password:*****
I want to find them in linux.
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.