Jump to content
xisto Community

flashy

Members
  • Content Count

    175
  • Joined

  • Last visited

Everything posted by flashy

  1. I think all of the NETGEAR Routers now come with UPnP Follow this tutorial and i will show you how to open your NAT. 1. Go to 192.168.1.1 (or 192.168.0.1 - or whatever they supplied you with) 2. Go down to maintenance and 'Attached Devices'. 3. My xbox is named '---' - most xboxes have that default name. 4. Make sure your xbox is located there and is in the IP you selected in your xbox wifi setup. 5. Now go down to 'Advanced' then 'UPnP' 6. If the 'Turn UPnP On' is toggled - then uncheck it and apply. Then when it updates check it again then apply it. That would have refreshed the UPnP. 7. Run the xbox live test and the NAT should then appear 'Open' or atleast 'Moderate'. Works all the time for me- and my neighbour, so it should work for you
  2. Well for starters, the installer says it all. It took me 75 mins to install and i got a 4 CPU 3.5 gHz processor, the images still have their magenta background and they look like its been drawn on paint. You go make an application but you dicide its rubbish - so you delete it, and unlike Basic and C# your project is still listed with no images and the link is broken, so it just wastes space.The sqldb's aren't editable - you can just view themTHERE ISNT A BUTTON TO PLACE A DIV IN!!!You click on a panel and the properties dont appearI went to insert an image - browsed for it, nothing. It makes a separate folder ([project] (2)) to place the solution in!Damn slow!You gotta place in the WHOLE url just for my documents so you can start your projectI went to move a textbox and it wasnt following my mouse.MSDN center barely provides helpThe registration info (like alphanumerics and maxchars and all that) aren't editable!!!Server takes forever to load, and sometimes it doesnt load atal!_________________I could provide you with 15 other bugs and poor work but i cant be bothered. This is my opion - IF YOU AINT GUNNA MAKE AN APPLICATION THAT WORKS, THEN DONT MAKE ONE ATALL!
  3. I always thought that astrology and astronomy were the same, they both had 'astro's' in them. Astrology is where people are obsessed in watching stars and planets, whereas Astronomy is pleople who look at stars to discover and its their job?well thats what i thought
  4. Hi in this tutorial you will learn how to create tables and insert items into them. First steps are to create the database - go into your cpanel and mysql databases, from there make an account and a database and then attach them together with all priviliges, call the database test and the account admin, with the pw as pass - or any other password. We need to connect to the database so first in your php file (probably named index.php) - this is how to do it. mysql_connect("localhost", "admin", "pass") or die(mysql_error());mysql_select_db("test") or die(mysql_error());The first line was to connect to the host as LOCALHOST as it is usual the databases locally, the username would be what the username would be (most servers require you to place your CPANEL username as a prefix - like PREFIX_USER, Xisto requires you to do so), and then your password. The second line was to connect to the database that you created earlier, again you willneed to place in the prefix if you did so for the username. Now we can start to make a table! We will make a guestbook in this tutorial. // connect to the databasemysql_connect("localhost", "admin", "pass") or die(mysql_error());mysql_select_db("test") or die(mysql_error());//create a tablemysql_query("CREATE TABLE guestbook(id INT NOT NULL AUTO_INCREMENT,PRIMARY KEY(id),name VARCHAR(30),comment VARCHAR(500))") or die(mysql_error());The two lines starting from 'id' to '(id)' are the row id's - you'll see what i mean when you go into phpMyAdmin. VARCHAR means variable characters - so any variable (abc!"Ł123) can be placed into it, you can use INT for numbers. the VARCHAR '(30)' means how many characters are stored into this variable. Now lets go insert some data into the tables // connect to the databasemysql_connect("localhost", "admin", "pass") or die(mysql_error());mysql_select_db("test") or die(mysql_error());// insert into tablesmysql_query("INSERT INTO guestbook(name, comment) VALUES('Jim', 'Hi nice site!')") or die(mysql_error());mysql_query("INSERT INTO guestbook(name, comment) VALUES('Bob', 'Lovely weather')") or die(mysql_error());That created two lines of data into 'guestbook', 2 names - Jim and bob, and 2 comments - 'Hi nice site' and 'Lovely weather' Now lets retrieve the variables in the database - but we must store them as an array and read them as an array // connect to the databasemysql_connect("localhost", "admin", "pass") or die(mysql_error());mysql_select_db("test") or die(mysql_error());$get = mysql_query("SELECT * FROM guestbook") or die(mysql_error());while($array = mysql_fetch_array($get)){echo "Name: ".$array['name']."<br />";echo "Comment:<br />".$array['comment']."<br /><br />";}The * after SELECT means ALL - in other words SELECT ALL FROM guestbook. I hoped i helped getting started!
  5. Your quote to that... I would say around Ł15-Ł30? Some where between there. if your from usa $30-$60 est conversion.
  6. gotta be mp4, microsoft will not allow sony to play WMV, but yes to WMA. The trouble with mp4, its not compressed, so it takes up a heck of alot of space.
  7. As well as everyone else - tell your mum that you aint joking, then see the doctor. You could be athsmatic, but theres a chance. You might be layed in a bad position, try adding a few pillows underneath your head to see if that helps. Usually i cant breathe very well when i lay flat on my back. Adjustable beds actually solve snoring problems because the throat, when you are perfectly horizontal, clamps together so the person snores.
  8. I dont play runescape, people call you noobs and such just because your no good. Apparently your a noob if your level 50 or under which i just think is really childish. Anyway back to the subject - Just play normally, do normal things. Cheating doesnt get you anywhere. Kill enemies like normal.
  9. OK i found out how to do it! I did a bit of google and this worked completely for me and it is simple. I used this code putenv("TZ=UK");echo("h:i:s"); If you like in the United States and you live say Los Angeles you would do this... putenv("TZ=US/Los_Angeles");echo("h:i:s"); The full TimeZones are here You can set the default timezone like this: date_default_timezone_set('UTC'); And you can then format it <?php// Assuming today is: March 10th, 2001, 5:16:18 pm$today = date("F j, Y, g:i a"); // March 10, 2001, 5:16 pm$today = date("m.d.y"); // 03.10.01$today = date("j, n, Y"); // 10, 3, 2001$today = date("Ymd"); // 20010310$today = date('h-i-s, j-m-y, it is w Day z '); // 05-16-17, 10-03-01, 1631 1618 6 Fripm01$today = date('\i\t \i\s \t\h\e jS \d\a\y.'); // It is the 10th day.$today = date("D M j G:i:s T Y"); // Sat Mar 10 15:16:08 MST 2001$today = date('H:m:s \m \i\s\ \m\o\n\t\h'); // 17:03:17 m is month$today = date("H:i:s"); // 17:16:17?> Notice from jlhaslip: Merged
  10. I looked at the post, but every time i tried to use those techniques it just didnt work .
  11. Great tutorial . oh yeah by the frontpage is a WYSIWYG editor for HTML only!! I wouldn't bother using fontpage as an editor because the code that it generates is messy.
  12. Hi my timezone is GMT and the code im using to display the time and date is this: date('l j F - g:i a') which would then display "Tuesday 25 March - 12:11 am" But the time for me at the time was 07:11 am. Anyone know how to tune it so it is with GMT time?
  13. No mammal gives milk without giving birth, many non-organic farmers give cows genetics to start producing milk. Goats give birth at a young age. And as tourist said, it is possible for animals to give birth, but under modified conditions. They dont do it naturally.
  14. yeah that theme is Pluralism. I used it on one of my previous sites, good layout. I like EDIT: Your website by the way isnt html strict
  15. Some things aren't copy righted, they make stuff for open source. But even changing text around from a copyrighted document is still plagarism. The owner went to great effort writing peices of stuff and then other people just blaitently change 3 words around and claim its theirs
  16. I just think that the world is round, in 1970 they had video cameras that the astronauts had. They taped it and showed what it looked like to the world. They didn't have video editing software in them so it couldnt have been faked. and if the world was flat, then when you are in a plane and high up, why do you see a 'round' horizon.
  17. I dont personnaly use freeware - because its usually tacky software that companies use for testing. And they are unstable.But the good freeware applications i know are:GIMPPaint.NetVisual Basic - C, .Net, C#, J#, J+, C++, and more (<-- Those are just ace!)Notepad++Ad-Aware SE PersonalWS_FTP and CORE FTPPHP and APACHE serverGood list but i think thats all
  18. PHP stands for (PHP: HyperText Preprocessor). It is a server sided language which therefore must be used with a server. PHP was originally created by Rasmus Lerdorf in 1994, the main implementation of PHP is now produced by The PHP Group and serves as the de facto standard for PHP, as there is no formal specification. Released under the PHP License, the Free Software Foundation considers it to be free software. The actual first name of PHP in 1994 when it was created was officially called "Personal Home Page Tools (PHP Tools)". Then in the release of V3.0 the PHP company called it by what we call it today. Some of the simple tags that people use everyday are echo "Hello world"; $POST, $GET, $REQUEST(these are otherwise known as super globals) The POST GET and REQUEST were not actually introduced until 4.1.0 release on December 1, 2001.
  19. I love playing darts, i mostly play it at my friends house or at parties. I never get a decent score or i always go bust lol! Anyways, i need practise...
  20. I think so, firefox uses up less space on the computers cache than IE. Not sure about opera, so that pages can load quicker. Also mozilla has LOADS of mods and themes that you can use. I have always hated IE, i still use it but hey, mozilla firefox i would recommend the best browser. Then again, you can make your own on visual basic.net
  21. Cool this will heelp me for the near future . Thanks a bunchie.
  22. I dont usually (or most of the time, never) want to wake up out of a dream. Even if they are bad dreams i still like them . It puts me off of remembering abuot school. If i want to get myself out of a dream then i just think of something REALLY bad or i just think about getting up, works for me!. I have a technique of remembering your dreams too, as soon as you get up think about what you did in your dream, itl come to you within a few secs. But you gotta do it 3 mins before you get up otherwise then its out of your memory for good.
  23. I live in the UK, at the moment I hate it. I dont live in london, but i live in swindon. It's a town but it feels like a city. Immigrants EVERY where you look. Theres a little place called GorseHill, its full of phillipinoes and polish people!I rate england 2/10. You dont want to live here unless you like in rural areas. Like devon! Lovely there...
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.