forms/variables/create database

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



hi, does anyone know why this is not working, i have married 2 pieces of
code together and i have no idea what im doing--any help is appreciated.
I get an error that says it cant find the host--$host so obviusly its not
passing it from the form.

/////////////////////////////////////////
<?php
$host =  $_POST['host'];
$user =  $_POST['user'];
$pass =  $_POST['pass'];
$db_name =  $_POST['db-name'];


$link = mysql_connect('$host', '$user', '$pass');
if (!$link) {
   die('Could not connect: ' . mysql_error());
}

if (mysql_create_db('db_name')) {
   echo "Database created successfully\n";
} else {
   echo 'Error creating database: ' . mysql_error() . "\n";
}
 ?>
/////////////////////////////////////////////

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux