Search results

  1. T

    Credits for a good review

    This is my first video game project. Please give me ways to improve it. I will accept comments on the visuals, gameplay, or anything else relating to that page. Reputation will be awarded to those who give out helpful suggestions. (worth 25 pts) If you are extremely helpful, I will give you...
  2. T

    A Video Game Site.

    This is my first video game project. Please give me ways to improve it. Reputation will be awarded to those who give out helpful suggestions. (worth 25 pts) If you are extremely helpful, I will give you additional points on top of the reputation. (10-50) edit: I forgot to add the link. Sorry...
  3. T

    [php] variables

    I want to have a variable with a name that consists of a variable. My first varible is $war_type. My second variable is $[$war_type]_cost. How could I make it so that the engine recognizes $$war_type_cost, but at the same time, recognizes that $war_type is separate from $_cost? Sorry if...
  4. T

    [php] Function Efficiency

    What would be more efficient: One script that is ~300 lines long, but if-else statments means that the server would only have to run ~100 of them Or One script that is ~50 lines long, and then re-directs the browser to another script that is ~100 lines long, and the server would have to...
  5. T

    [php] Cookies

    I need to make a cookie that expires ~5 seconds after it was created. Does anybody know what I should set the time to?
  6. T

    [php] Fuctions

    I need 2 separate functions: 1. A function that will cause a certain script to run at x time of day, every day (or just every so often, it doesn't matter) 2. A function that will enable me to UPDATE every table named duels_* (star meaning there will be multiple tables with different names)...
  7. T

    Hosting Advertising

    I want to put ads on my site to generate revenue. Does anybody know who will give me the best deal. I am looking to host one banner (or 4ish text ads) on my website.
  8. T

    [php][mysql]Select From issues.

    In my mysql entries, many of the entries contain [enter] characters. (These are also known as /n or newline) When I pull them from the table, all of the /n are turned into spaces. Does anybody know how I can fix this? I am currently using mysql_query("SELECT * FROM ...");
  9. T

    [.exe] Web Browser

    For a school project, I am thinking about building a web browser, such as Mozilla, or IE7. I have no idea where to start, or even what language to use. If someone could tell me what language to use and/or point me to somewhere I could get a tutorial in the language that would be great. I...
  10. T

    [php][mysql] UPDATE function

    mysql_query("UPDATE wiki_quotes SET Quote = '$Quote' WHERE id = \"$counter\""); That line of code is a working line of code. I need to set a column named Submitted By equal to another variable. If I try... ...SET 'Submitted By' it gives me an error becuase of the 's...
  11. T

    [mysql][php]

    I am having trouble with this code: mysql_query("UPDATE wiki_quotes SET Quote = $quotes WHERE id = '$counter'") or die(mysql_error()); The error I recieve is: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use...
  12. T

    Pockets of Downtime

    I am experiencing frequent pockets of downtime (5-6 times a day). They last under 2min each, so it's of no huge concern, but does anybody know what is/could be happening?
  13. T

    [PHP] form problems

    I am having trouble with this script: $quote_result = mysql_query("SELECT * FROM wiki_quotes ORDER BY $submit ASC"); while($quote_row = mysql_fetch_array($quote_result)){ echo "<p class = \"wiki_data\"> <tr><td>" .$quote_row['Quote']. "</td><td>" .$quote_row['Importance']...
  14. T

    [php] isset or similar function

    I made a form: echo "<form action = \"users_create_account_process.php\" method = \"post\">"; echo "<tr><td>"; echo "E-Mail Account: "; echo "</td><td>"; echo "<input type = \"text\" name = \"email\">"; echo "<br>"; echo "</td></tr><tr><td>"; echo "Veirfy E-Mail: "; echo "</td><td>"; echo...
  15. T

    XXX material

    Corey, I really appreciate the fact that you are now removing all XXX material from your servers. The web has too much of it, and I'm glad you are doing your part to keep it to a minimum.:biggrin: Keep up the good work:hahano:
  16. T

    Website page width

    I am trying to put together a website that looks good on any monitor, any resolution. If there is a widescreen monitor, I want everything blockquoted, so that my page does not look all spread out. But if they have a full screen, all the blockquotes will make the page appear crammed. I...
  17. T

    Name Servers

    When I try to change my nameservers to ns1.x10hosting.com and ns2.x10hosting.com, I get errors spit back at me. I use 1and1, but I don't think that the problem is on their end.
  18. T

    Tables

    Here is the code I'm using, I have 3 tables: <? echo "<table border = \"1\" width = \"13%\">"; //stuff that goes in the table echo "</table>"; echo "<table border = \"1\" width = \"35%\">"; //stuff in the table echo "</table>"; ?> <table border = "0" align = "center" valign =...
  19. T

    ATI Video Cards

    I noticed that ATI has a line of HD 2000 series video cards. I was wondering how they compare to some of the NVIDIAs for about the same price.
  20. T

    phpMyAdmin still slow

    phpMyAdmin is still being extremely slow. I haven't said anything about it because of the server alert, but it has been several days now. Why is it being so slow?
Top