I'm trying to setup a php page that will allow me to create a mysql database, and then build tables, views, etc. by importing a file previously created by mysqldump. When I get to the following command:
passthru("/usr/bin/mysql -u $username -p$password $dbname < /home/service/dump.sql");
I get...
I have an HTML table with following style:
.BoxHolder {
display: inline;
border: 1px solid black;
cursor:pointer;
width:200px;
height:200px;
}
And a div inside of this table with the following style:
.BoxItemScroll{
overflow:auto;
width:198px;
height:198px;
}
The first problem is that in the...