Jump to content
Old threads will finally start getting archived ×

rhodrykorb

Members
  • Posts

    12
  • Joined

  • Last visited

    Never

Everything posted by rhodrykorb

  1. just to let you know, this problem (CSS as mentioned in my last post) still exists today
  2. anyone????
  3. Has anyone had the pleasure of installing and getting PHP 6.0 to work with IIS? If so could you please advise on how you managed to do it. I have spent a little while trying to get it to work.
  4. The problem exists still, I tried a range of viruis software and it believes that there is still a trojan on it.
  5. Please take a look at your CSS, IE8 the page ha a few problems, the main content area is placed at the end of the nav space on the right.
  6. Try; ini_set("allow_url_include", "1"); this may help, let us know if this works :-)
  7. log their ips in some way (maybe a DB), kind of like rapidshare does for free users
  8. Is there a way to turn on the "allow_url_include" in our script???
  9. I'd be interested in the answer as well becuase I need a way to run/include files from offsite
  10. Has anyone done this before and have sample code for me??
  11. Hi, I have a form with dropdowns which are populated from a mysql database. I need them to work so that the selection in the first dropdown narrows the mysql query and therefore the results in the second drop down, I of course need this to happen when different options are selected in the first drop down. Here is my code so far: <label>Department</label><br /> <select name="department" size="1"> <?php $department_query = $local_mysqli->query("SELECT id, name FROM department"); while ($department_array = mysqli_fetch_array($department_query)){ $department_id = $department_array['id']; $department_name = $department_array['name']; echo "<option value=\"$department_id\">$department_name</option>\n"; }; ?> </select> <br /> <label>Position</label><br /> <select name="position" size="1"> <?php $position_query = $local_mysqli->query("SELECT id, title FROM positions WHERE assigned=0, department=$department_id"); while ($position_array = mysqli_fetch_array($position_query)){ $position_id = $position_array['id']; $position_title = $position_array['title']; echo "<option value=\"$position_id\">$position_title</option>\n"; }; ?> </select>
  12. This site is for use by kids 12-18 so can u evaluate the look of it and layout please http://keepingtrack.moodle.com.au/
×
×
  • Create New...

Important Information

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.