Jump to content

skein

Members
  • Posts

    29
  • Joined

  • Last visited

    Never

Everything posted by skein

  1. Hello! I decided to restart my old website Fighting Connection from the grounds up! Right now there is not much there, but I'm trying to update it almost every day. Fighting Connection is for people, who enjoy fighting video games and like to know more about their favourite characters, games and more. So if you like the idea of this website then check it out here: http://www.thefightingconnection.com/ Also if you would like to see the OLD version of Fighting Connection you will find it here: http://web.zone.ee/fightingconnection/
  2. what is the regexp sign for [ and ] ???
  3. so im doing this test application. I did everything step by step as said in the book: - I created a table items - i created a file item.php in models folder <?php class Item extends AppModel { var $name = 'Item'; } ?> -I created a items_controller.php in the controllers folder <?php class ItemsController extends AppController { var $name = 'Items'; var $scaffold; } ?> But when I go to http://localhost/testapp/items it says Not Found, but the book says I should get a view rendered. What did I do wrong. Can someone help me please?
  4. I'm going to make, or should I say remake a site from the grounds up. It's about fighting video games (Tekken, Sou Caibur, etc.). It's called Fighting Connection. What I wan't to know what content you as gamers or just visitors of a website like this want to see. Please give your suggestions and help to make a better website. Thanks in advance. P.S. You can see the old version here http://web.zone.ee/fightingconnection
  5. http://web.zone.ee/rustedmortalkombat/killer_mask/ feedback please thanks things I know already: -the slide option glitches.
  6. strange. i changed open() to false and it worked. but isn't it wrong using ajax like this???
  7. yes. the funny thing is that alert(xmlHttp); works but it's stuck in state 1 (Loading). I looked on other forums for a solution for this problemm and I found that many other people have this but no proper solution was given. could it have something to do with Apache???
  8. still doesn't work in firefox but work in IE
  9. <html> <head> <title>Untitled Document</title> <script type="text/javascript"> function connect(){ var xmlHttp; xmlHttp = new XMLHttpRequest(); alert(xmlHttp); xmlHttp.open('GET','index.php', true); xmlHttp.send(null); if(xmlHttp.readyState==4){ document.getElementById('test').innerHTML = xmlHttp.responseText } } </script> </head> <body onload="connect();"> <div id="test"></div> </body> </html> EDIT: Code tags..
  10. my XmlHttpRequest doesn't work in firefox for some reason. could anyoune help out, it works perfectly in IE. :-/
  11. I have a small question. If I have a website that uses a php script that connect to a MySQL database and It uses a password, how do I hide the password from other people. Baseicly my question is what is the ussual way people hide it. Sorry if the question is dumb.
  12. http://www.zone.ee/fight1/FC3000/ This is a test of the 'look'. Comments welcome.
  13. Is this script ok for a login system??? This script is was writen in the idea that it does't go to another page.
  14. Well i know a little css and i use it in most of my websites for style porposes.
  15. Already did a that. The forum had a registration form. a login system. mysql databases. simple posts and a admin tool to edit the forum. but it was very simple.
  16. What should I make with php? I really want to do something, but don't know what.
  17. well i created a table: CREATE TABLE a (a text); then i insert a value: INSERT INTO a VALUES(a='aaa'); but it shows that i entered NULL
  18. It worked fine at first but now it only enters NULL parameters into the table. What the hell??? i reinstalled it for diffrent drives but still the same thing happens.
  19. if im not mistaken that means you got to get more memory from your client and it will cost you more. this is not an error. mysql databases take up sapce too.
  20. well i made a log in system with sessions. But when I close the window and open a new one the system starts another session and doesn't delete the other one. Is there a way to make it use the old session or is there a way to delete the old session if the window closes becouse it takes up space to (thou very little)?
  21. so if i store the in a folder that is in the root folder will that be ok or not?
×
×
  • 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.