Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. This topic has been moved to Application Frameworks. http://forums.phpfreaks.com/index.php?topic=361393.0
  2. <?php $names = file('/path/to/file/names.txt'); foreach ($names as $name) { echo '<iframe id="fr" src="http://www.youtube.com/subscribe_widget?p=' . $name . '" style="overflow: hidden; height: 105px; width: 300px; border: 0;" scrolling="no" frameBorder="0"></iframe>'; }
  3. Seriously, your going to need to provide more information than that.
  4. Firstly, if your function needs to return more than one value your likely doing too much within the function. Anyway, just return the arrays within an array. return array($a, $b, $c);
  5. Your using jQuery. Why are you still attaching events inline?
  6. Assuming this: $base->redirect('viewthread.php?forum='. $f .'&id='. $thread.'&goto='. $creation_id); sends a location header, it makes absolutely no sense to have it placed after output has been sent to the browser.
  7. Also, again, why are you trying to write such a convoluted system? What is wrong with using an autoloader?
  8. No. That sets your model as a property of your Load object.
  9. The problem still remains. This line: $data = $this->member->info(); No where have you set member.
  10. Nowhere in your code do you define a $member property within your controller. On a side note, why aren't you using autoloading?
  11. Firstly, your code is formatted in a manner that makes it unreadable. Secondly, it's markup. This is the JavaScript forum. You have not posted any relevant code.
  12. You are kidding right?
  13. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=361199.0
  14. The logic is no different.
  15. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=361169.0
  16. They would be useless if you couldn't.
  17. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=361172.0
×
×
  • 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.