Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. Why are you using INSERT? That is for creating a new record... Do you mean UPDATE?
  2. Why are you using vi? Use vim, you caveman. %s/code-007100/code-007199/g
  3. To extract the WHOLE string in between the tags you can use: []
  4. Right sorry, what OS are you using?
  5. It's because you're always setting $count back to 1, so if $counter is
  6. You need to join on the duplicate columns. Try: SELECT s.name FROM students s LEFT JOIN enrollment e ON s.student_id = e.student_id WHERE e.class_id != 3
  7. We need more information. What kind of database? What reports? What are you trying to do?
  8. Hi... Do you have a question or just dropping by to say hi?
  9. There should be an option in your FTP client where you can transfer files in Binary mode, which is pretty much necessary when you transfer from windows to unix platforms. Try switching it and re-uploading the install script.
  10. Well what does the link look like? What is it supposed to be? You can probably just view source it or echo $link in the getLink method.
  11. Who is owner and group?
  12. Hahaha. Sure, '@' is a miracle symbol, it will resolve any and all errors.
  13. I like it a lot but you have two totally different fonts. Just use the old fashioned looking one.
  14. Yeah, in most cases linux is very convenient, but there are times when you may consider it a virus when something breaks...
  15. That would run nano, a text editor, as root...
  16. redarrow please don't jump into the middle of a thread when you obviously haven't read the previous posts, you're just confusing everyone.
  17. I found this site pretty decent: http://www.howtoforge.com/
  18. When I try to login with u:"phpfreaks" p:"tester" it says:
  19. Yeah, sorry I didn't know you still had the DOCUMENT_ROOT in there still. Do what matt suggested, it should work.
  20. Why do you call this twice, once with a loop and once without? Get right of: Also, never use short tags () always use <?php.
  21. I'm assuming you called it wrong, can you show me the code, please?
  22. A timer? You should probably use Javascript for this, well depending on what exactly you want you may have to. Just google "javascript timer", and you should find something useful.
  23. That's only if you have SSH access. So let's go over this.... The path you're trying to access is currently: /home/content/s/c/t/sctfaery/html/includes The correct path: /home/content/s/c/t/sctfaery/html/fab/includes The relative path you're calling from your PHP page: ../includes/header.php The page you're calling it from: html/fab/content1.php So presumably you would change your relative path call to this to fix your problem: ../fab/includes/header.php
×
×
  • 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.