Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. I'm still getting the same error message as before. http://www.penpalparade.com/
  2. I'm a little confused about what's 'not executing'. Are you getting a blank screen? Errors? Timing out? What's happening?
  3. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=339501.0
  4. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=339490.0
  5. Google and check out some of these examples: http://www.php.net/mysql_connect
  6. Please refer to: http://www.phpfreaks.com/forums/index.php?topic=339476.0
  7. I think you got the wrong impression for this forum. We're not here to work for you, if you want to pay/barter with someone, then I can move this thread to the freelance section. Even if someone was willing to do this for you, there is a lack of information. Like doddsey said, try it yourself, if you get stuck post relevant code and ask specific questions.
  8. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=339441.0
  9. 'Long' is a MySQL reserved word. I would suggest changing your column name since it hasn't been created yet. Otherwise, you have to use backticks `Long` wherever you reference it. http://dev.mysql.com/doc/refman/5.1/en/reserved-words.html
  10. Why don't you use sessions?
  11. You can do arithmetic directly in SQL: UPDATE test SET credits = credits - 10 WHERE id = 1
  12. Without the error suppressors..
  13. Check for errors: mysql_query("UPDATE `users` SET `wall`= '$wall' WHERE `username`='Manix'") or die(mysql_error());
  14. Moved. It should, but in the future if you see something misplaced, don't hesitate to click "report to moderator".
  15. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=339255.0
  16. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=339247.0
  17. Yes, for tabular data you should use tables. The format should look like: echo "</pre> <table>"; //while loop { echo ""; echo "$img"; echo "{$user['username']}"; echo ""; } echo "</ta For each iteration create a single row (tr) and 2 columns in each one (td).
  18. Regular expressions, specifically preg_match. Probably use str_replace, or if you need to replace something a little more complicated, use preg_replace.
  19. This topic has been moved to PHP Regex. http://www.phpfreaks.com/forums/index.php?topic=339171.0
  20. Mind posting the solution so others can reference?
  21. Take a look at the documentation -http://www.oracle.com/technetwork/articles/javase/servlets-jsp-140445.html Really depends on what you're trying to do.
  22. If the string is consistently the same format, you can just explode it and take the first element.
  23. This topic has been moved to PHP Freelancing. http://www.phpfreaks.com/forums/index.php?topic=339000.0
  24. chris, in the future, please place OR tags around your code.
×
×
  • 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.