Recent content by muoi

  1. M

    Javascript/AJAX/Mootools?

    How do I access an element that has been loaded using Request.HTML? I get the element is null error. I can access other elements that stay the same but just not the ones that were loaded afterwards. Any help will be appreciated! I can* get. I can access***
  2. M

    need help with PHP ERRORS?

    that code looks fine, check the line before it. usually missing an bracket or semi colon
  3. M

    need help with PHP ERRORS?

    that code looks fine, check the line before it. usually missing an bracket or semi colon
  4. M

    PHP MySQL: How did allrecipes.com make display the ingredients in a list?

    $list = explode(",", $ingredients); split up each item and put into array $list then i would use a foreach loop to list each of the item in the array echo "<ul>"; foreach ($list as $item) { echo "<il>$item</il>"; } echo "</ul>";
  5. M

    Can someone help me out? (PHP)?

    you have to end <?php everytime with ?> kinda like <html><body><textarea cols='40' rows='9'><table style='position: absolute; top: <?php echo $_POST["top"]; ?>px; left: <?php echo $_POST["left"]; ?>px;' width='<?php echo $_POST["width"]; ?>'><tr><td> <div style='overflow: auto; height: <?php...
Back
Top