Search results

  1. X

    review my game site

    Well, from the first looks at it, it might look like and interesting site, but the main problem with it is that there is not content on the mainpage really other than an add, and the game platform navigation buttons. I'm also having a little trouble trying to tell what the point of this...
  2. X

    Use of the report button

    I've never had to use the report button on this forum here (because I only stop by for a few minutes each week). But when I use the report button, I do to alert the mod squad about flaming/trolling mostly. Mainly since a lot of the forum I am on I don't see spamming, but just plain disrespect...
  3. X

    Connection timed out

    Well, when I ran it, it took about half a minute, I got the same page, but telling me that "Line 34 of platoon.php, file_get_contents(): Stream failed". And seeing that it is trying to reference another website (http://api.erepublik.com/v1/feeds/citizens/2), thats the problem. x10hosting...
  4. X

    how to add download linke

    Well, to answer your original question: This is the most simplest way to to do it: <a href="path/to/desired/file.extention">LINK TEXT</a> Example: <a href="images/funny/dog.jpg">A Funny picture of a dog.</a>
  5. X

    400 Credits for a Good Gaming Clan/Community Name

    The Spawn - As in where you revive. S.C.U. - Spawn Campers United.
  6. X

    400 Credits for a Good Gaming Clan/Community Name

    OSOK (One Shot One Kill)?
  7. X

    mybb HELP

    Did you remember to Create a Database user and give permissions for that said Database user? And can you give us a screenshot?
  8. X

    Positioning help

    Thank you, this is what I was looking for more. I'll try to get a link to it later today, I just need to put some finishing touches on it.
  9. X

    Positioning help

    Nah, that didn't work, it just smushed the text right together on the left. EDIT: Figured out a quick fix. Added: padding-bottem: 20px; To the ID of "panel"
  10. X

    Positioning help

    I'm testing it right now on XAMPP. If you want to see what I am trying to achieve with the DIVS and SPANS, take a look at http://twewy-fan.com/forum/, where it asks for a login. Where it asks for the Login info, it uses the DIV with SPANS that I want, the test to b aligned to the right/left on...
  11. X

    Positioning help

    Problem fixed, thank you so much. EDIT: New problem. I'm having some more positioning problems. I added this code: <div id="panel"><span style="float: left;">Hi There</span><span style="float: right;">Time is Hammer Time</span></div> And it looks like this: And it shouldn't. How would I...
  12. X

    Positioning help

    Sure, but that padding is caused from the browser, and im not sure how to get rid of it. <div id="userbar">Hi There</div> It's declared right after the <body> tag. #userbar { background-color: #C8C8C8; border-style: solid; border-color: #515151; border-top-width: 0px; border-right-width...
  13. X

    Embed Mp3 Player - Deny download access

    You could try screwing around with the File Permissions (CHMOD) to make it only accessable when the flash thing uses the .mp3 file, but when try to go to download the file, it won't allow it. I'm not sure on the exact settings for it though. You could also try using .htaccess to make it Forbidden.
  14. X

    Positioning help

    Um, I'm trying to create a little "Welcome back USERNAME" bar at the top of my website. It looks like this right now: I don't want it like that because of that stupid padding, I want it to be glued right to the borders of the browser, like this: Any help on how to get it like this?
  15. X

    Suggestions for best way to build a MySQL table from raw data?

    Can we see an example of the how your username text file is structured? Maybe you might not need Java for this, just a PHP script.
  16. X

    php $_GET and echo error

    O yea, fourallofus, when using the PHP tags, you can't create another instance of PHP with an instance of PHP. If your confused, just take a look at this example: <?php echo 'Welcome back ' . <?php $_GET['username']; ?> ; ?> The above will just not work. <?php echo 'Welcome back ' ...
  17. X

    SQL Command Line

    Use the "query" window in phpMyAdmin.
  18. X

    php $_GET and echo error

    <?php echo $_GET['host'] . '_show_title'; ?> this is probably the most simple way of getting what you want.
  19. X

    Programming your own forum

    I have yet to see a forum that does not use any kinda of SQL. If your going to make your own forum, your in for a long programming trip. Your first probably going to have to come up with the database design (like for most scripts). then the layout of your program (how it looks when viewed)...
  20. X

    PHP MySQL communication basics

    Well, I'm glad that your learning how to use PHP and MySQL. I would suggest that you don't use define that much, and try to use strings (ex. $user = bob). About the "->" arrows, they are used for OOP style of programing. With http://php.net/mysqli, there are two ways that you can use the...
Top