Jump to content
xisto Community

iGuest

Members
  • Content Count

    72,093
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by iGuest

  1. Very true, its very good. I'm waiting for customers on my reseller hehe
  2. iGuest

    Say Hi

    hello free33, nice to have you on board - enjoy FNH, keep active and dont spam
  3. mine's gone...but i don't care, i'm going to get paid hosting with hiyo...for 20US a year you get so much...so yum.
  4. I'm not sure, but I think I successfuly installed coppermine into php-nuke... Well, I did intalled it, but never inserted pictures, so I really don't know if is was functioning. I did it on this server.
  5. Once had a problem with an Epox motherbord, also the fan who did broke down.Just bought a new fan, and everything was back to normal!
  6. huh? wtf are yous talking about? I was asking if i need an ftp program to install phpbb hacks onto my forum. Im not asking for a an ftp program or a web broswer. and use better english i am american and everything but what if i wasnt? what if i just cae here from another contoury? i bet you wouldnt pay for english school so...edited: for some reasno i put "know" instead of "need".
  7. lol, i love the blending and texture in the first sig, great job :)the second one has some awesome funky design :mrgreen:
  8. I always use DVDDecrypter , and than I recode it using Nero Recode (If the original is a DVD-9).Than just burn it with nero...
  9. K it'll be a topic in this forum
  10. although it is plain, it's nice and simple. nice choice of font too but i cant make out the smaller text
  11. i would have to recommend ConTEXT. it's the best text editor i have ever come across and is totally free http://blogic14.blogspot.de/index.html
  12. Jay and Silent Bob Strike Back , that's by far the stupidest movie I've ever seen!
  13. since i had no clue what "banner cut in half sized" was supposed to mean, i just made a huge button which you can resize
  14. If the songs are integrated into the video then at the end of the movie(credits) you have to display their band name and song name and state that the music is property of them. 8)
  15. Alright, we'll add that to the list:FNH PoliceForensis gensVoiceBBIudicium regnumVis vires vox vocisKnockout Army.I think that's enough. We should vote!
  16. If you are a regular visitor to the site you will have noticed that 1) Admin were having to shut down the free hosting, hence the messages, and then 2)Admin recieved a donation which allowed him to continue providing free hosting.So in all, YES FREE HOSTING IS STILL AVAILABLE.
  17. They found someone to pay for the free server, so they were all re-instated. Free Hosting is available.
  18. Closed for 24 hours. This is allow people to calm down and for me to read the topic through and come to a conclussion about what has happened. Please DO NOT PM about this. I will deal with it in my own time. -Hazaa-
  19. :? :? :? :? :?: :?: :?: :shock: :shock: :shock:
  20. Blazing Squad / So Solid Crew. I think they have about 20 in each. So sad.
  21. Dude, I've noticed a typo, change msot supported to most supported. Delete this when sorted. -Hazaa- Nah I'll leave it there as an example of what a GOOD thing to post here is.
  22. lmao - sorry but that is the funniest thing I've heard all day. "Boy'z" want a crap name for a band. It's up there with Blazing Squad, Boyzone, Busted, McFly and all the others that ruin the music industy.But seriously, they have chinese music?
  23. Dude, I've noticed a typo, change msot supported to most supported. Delete this when sorted. -Hazaa-
  24. Alright, here's my list of FAQs. Most of it I just copied from other threads in this forum. General PHP Questions: What is PHP? What is it used for? How do I use it? PHP is the most common and most supported server-side scripting language. This means that the server executes your code and sends the result to your browser. It is usually used to generate dynamic content, such as you see in forums and content management systems. phpBB, IPB, vBulletin, PHPNuke, PostNuke, and practically every other system like them use PHP. To use it, you must first create a file named something.php. You can change the first part of the name, but not the extension. Then, you put your PHP code and/or HTML in that file. That's all! What's the best way to learn PHP? I would suggest buying a book and reading the whole thing, but that's expensive and time-consuming. I would specifically recommend PHP and MySQL Web Development, Third Edition. If you don't meet those requirements, here are a couple of good tutorial sites: -They have a very basic tutorial and an excellent function reference. W3Schools-Another basic tutorial. PHPBuilder-They have a bunch of tutorials (in the articles tab), a bunch of code snippets, a forum, and a bunch of other stuff. PHPFreaks-They have tutorials made by both themselves and their users, code snippets, fulls scripts, and a forum. Plus anything else I didn't mention. PHP Resource Index-This site has a bunch of tutorials and PHP Classes. MySQL PHP Questions: How do I connect to MySQL with PHP? First, make sure you have a database, user, and password. Then, you can sue the following code to connect to MySQL and select your database: $db_handle = mysql_connect("localhost", "__username", "__password") or die("Error: Could not connect to MySQL!");$db_db = mysql_select_db("__database_name", $db_handle or die("Error: Could not select the database!");You will need to edit this and set __username, __password, and__database_name to the username, password, and database name for you. How do I execute a query in PHP? Once you have connected to MySQL (see above), you can then execute mysql queries using the following statement: $result = mysql_query("MYSQL QUERY HERE", $db_handle);This will store the results of the query into $result. If there was an error, $result will be set to false. If there was no error, but no rows were returned, then $result will have no rows in it (Brilliant, eh?). If rows were returned, then $result will contain those rows. Okay, I've executed my query, now what? Now, you need to get those rows from the variable. There are several built-in functions which will help you with this: First, mysql_num_rows will return the number of MySQL rows included in a result variable. Example: $num_rows = mysql_num_rows($result);Second, you can get those rows using the mysql_fetch_row or mysql_fetch_array functions. To see the differences, refer below. To use these functions, you will need to set up a loop which will access each row. You can use a for loop, with 1 as the initial condition and the result of mysql_num_rows as the ending condition. Example:$num_rows = mysql_num_rows($result);for($i = 1; i < $num_rows; i++) { $row = mysql_fetch_row($result); //Do something with $row} The other way, and for me the simpler way, is to use a while loop with the call to mysql_fetch_row included in the condition: while( $row = mysql_fetch_row($result)) { //Do something with $row} What's the difference between mysql_fetch_row and mysql_fetch_array? There's only one difference: the type of array which is returned. Otherwise, they function exactly the same. mysql_fetch_row will return an array containing the values of the current row as the values in the array. Thus, you will have to access them using their numerical indexes. Example: $row[0];$row[1];...mysql_fetch_array will return the array with either numerical indexes, as above, with the column name from MySQL as the keys, or with both. This depends upon the second argument. It has three possible values: MYSQL_NUM, MYSQL_ASSOC, and MYSQL_BOTH. Example:$row = mysql_fetch_array($result, MYSQL_NUM); //Will return an array with numerical indexes.$row = mysql_fetch_array($result, MYSQL_ASSOC); //Will return an array with keys.$row = mysql_fetch_array($result, MYSQL_BOTH); //Will return an array with both numerical indexes and keys. Obviously, there isn't much right now. That's because it takes alot of time to write alot. I'll add mroe as I get the time. Links: http://www.htmlgoodies.com/ QuoteMaster http://forums.xisto.com/no_longer_exists/ Capitalize first word of every sentence http://forums.xisto.com/no_longer_exists/ Quick Sort Function http://forums.xisto.com/no_longer_exists/ Add commas to #'s http://forums.xisto.com/no_longer_exists/ MyPHP Google PageRank http://www.tapouillo.com/firefox_extension/sourcecode.txt Dynamically Created PREV/NEXT Page Links http://forums.xisto.com/no_longer_exists/ Complete recursive directory listing http://forums.xisto.com/no_longer_exists/ CodeWalkers https://codewalkers.com/ PHPBuilder.com - The Resource For PHP Developers http://www.phpbuilder.com/ Please only respond to this post if it directly relates to this FAQ. Examples include suggestions, comments, and disagreements. DO NOT post questions about PHP in here. I'll just delete them, since I don't want this thread to get off-track. Thanks.
×
×
  • 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.