Recent content by CuriousCliff

  1. C

    How can I fix "unable to fork" error in php?

    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...
  2. C

    I have a html table with a scrollable div inside. The table won't wrap the div. Why?

    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...
Back
Top