i've tried to add a collumn to a table but it just
won't happen,van anybody tell me wy?
this is my script thingie
$link_id = mysql_connect ($dbhost, $dbusername, $dbuserpass);
echo "success in database connection.";
// select the specific database name we want to access.
$dbname=$usnam."_".$dbname;
if (!mysql_select_db($dbname)) die(mysql_error());
echo "success in database selection.";
$result="ALTER TABLE cv ADD COLUMN nationaliteit char(15)";
if (mysql_query($result)){
echo 'de tabel is uitgebreid met een kolom';
} else {
echo 'de tabel is niet uitgebreid met een kolom genaamd nationaliteit';
}
?>
already saying thanks !
won't happen,van anybody tell me wy?
this is my script thingie
$link_id = mysql_connect ($dbhost, $dbusername, $dbuserpass);
echo "success in database connection.";
// select the specific database name we want to access.
$dbname=$usnam."_".$dbname;
if (!mysql_select_db($dbname)) die(mysql_error());
echo "success in database selection.";
$result="ALTER TABLE cv ADD COLUMN nationaliteit char(15)";
if (mysql_query($result)){
echo 'de tabel is uitgebreid met een kolom';
} else {
echo 'de tabel is niet uitgebreid met een kolom genaamd nationaliteit';
}
?>
already saying thanks !