Jump to content
xisto Community

iGuest

Members
  • Content Count

    72,093
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by iGuest

  1. I think the error is in the user... remove the @localhost (after the user)... (The local must not be confused with user)I am not an expert in databases... but I already had a similar problem.Best Regards :wink:
  2. iGuest

    Photoshop

    Yea i use photoshop but I'm kind of a beginner, and I haven't made any avatars or sigs with it
  3. These people have lives and they have to go throght hundreds of people.
  4. I believe that everything in the bible is true. I think the word you were thinking of is parable, and that is really only relevant when Jesus tells a parable, and thats only in the new testament... and in response to the questions about free will and the flood, God decided that he would warn the people to repent, and that they were to watch Methusaleh, because when methusalah died, the flood would come. Noah preached for hundreds of years and noone listened; Methuselah is the oldest man ever, he was 900 something when he died, this shows God's mercy, they were a wicked and sinful world, and so God warned them and told them to repent or else... but they did not listen. and we do have a free will, that is how God created us: it's a simple choice really, we can live our lives for as long as we live in sin, doing what we want, or we can repent and try to follow him and we will be granted everlasting life and sinlessness... if we didnt have free will we would all be sinless and live forever, but we would just be drones, not thinking ourselves, with no choice." The wages of sin is death, but the gift of God is eternal life in Christ Jesus our Lord." Rom 6:23 if we sin we do not deserve to live, but god has given us a lifetime so that we can choose, but once we die, it's too late, and we've either chosen to obey him or chosen death. It's like an amazing sports car thats pointed at a cliff.. we can take a ride in it and it could be the best ride anyones ever had, wed look cool and the car would be really fast, but once we start the car we know we'd have to go over the cliff, thats the price for it.
  5. sure! Go to your cPanel and click in "MySQL databases"... After create a database name go to phpMyadmin to apply your changes... :wink:
  6. I'm active...will you delete the inactive ones though??
  7. I tried to register but no e-mail has bee sent. It may just be slow servers though. Anyways, here's an exapmle of what I can do. I wouldn't mind being a designer there. Hell, I wouldn't mind being a designer anywhere! lol What do people think, Any good? I don't have any 3D modellig software and its all my own stuff made in Photoshop
  8. iGuest

    Palm

    By the way darkforests how good is the camera on the Zire 72 and 71 i bought a Zire 31 because i did'nt want to spent the extra money for the camera if it was'nt good. but now i would like Tusen E
  9. I find it that tuts on these thing swon't help you can't copy codes...like tutorials!
  10. Hi, I have a friend with the game "SW: Jedi Academy" and he would like to have a clan... Anyone knows if I can put his clan in my account??? (In FNH homepage says also "clans hosting")(sorry for my bad english :oops: )Best regards! :wink:
  11. iGuest

    PHPBB

    I need a dark goood skin and some hacks1. Shop Hack2. Money Hack (for Shop Hack)
  12. iGuest

    PHP-Nuke

    I find many things in PHP Nuke I don't need....and things it doesn't have like a shop or points (money). The only thing I use in php nuke is the download anf forums and thats it
  13. First there is lots of games and software but you do have to order them from Apple and second if you already have an Xbox a PDA and a GBA SP. why do u need more games i would rather chose the pictures, video and music with no vireses.
  14. Wow really theres soemthing you don't hear everyday........is asp any good though??
  15. whaha abcde is dutch.... hmmmz some more dutch would be nice. Goed werk ga zo door :wink:
  16. Here's my tutorial of making a shoutbox. 1. First of all we need to create the MySQL database (this is the important part): CREATE TABLE `shoutbox` ( `id` INT(12) NOT NULL AUTO_INCREMENT, `username` VARCHAR(25) NOT NULL, `email` VARCHAR(25) NOT NULL, `message` TEXT NOT NULL, `date` VARCHAR(15) NOT NULL, `ip` VARCHAR(25) NOT NULL , PRIMARY KEY (`id`)) All the details (the message, and stuff) are going to these tables. 2. Now we will create the page called connect.php. With this page the shoutbox will connect to the database and send the message you wrote and all the other stuff. <?php $co_host = "localhost"; // sql database host $co_name = "username"; // username $co_pw = "password"; // password $co_db = "database name"; // database name you got access to mysql_connect($co_host,$co_name,$co_pw) or die(mysql_error()); mysql_select_db($co_db) or die(mysql_error()); ?> 3. And now, finally, the last part: writing the shoutbox itself. <html> <head> <title>Shoutbox!</title> <style type="text/css"> <!-- .message { color: #000000; font-family: Verdana; font-size: 10px;} .username { color: #FF9900 font-family: Verdana; font-size: 10px; font-weight: bold} .date { color: #707070; font-family: Verdana; font-size: 9px;} .forms { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10 px; color: #6CA05A; text-decoration: none; background-color: #CCCCCC; border-color: #6CA05A; border-style: solid; border: 1px} .submit { background-color: #CCCCCC; border-color: #6CA05A; color: #2A343C; font-family: Verdana; font-size: 10px; border-style: solid; border 1 px;} --> </style> </head> <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="padding: 2px"> <?php // If submitted if($_POST['submit']) { // Verify if the fields were filled. if(!$_POST['username']) { echo 'Error, You need to post your Username!'; die; } if(!$_POST['email']) { echo 'Error, You need to post your Email!'; die; } if(!$_POST['message']) { echo 'Error, You need to post a Message!'; die; } // Date format $date = date("d/m/y"); // http://http://de2.php.net/manual/de/function.date.php // Assign variables of the forms $username = $_POST['username']; $email = $_POST['email']; $message = $_POST['message']; $ip = $_SERVER['REMOTE_ADDR']; // Connect to the database include('connect.php'); // Insert the info in the shoutbox table. $query = "INSERT INTO shoutbox (username, email, message, date, ip) VALUES ('$username','$email','$message','$date','$ip')"; mysql_query($query); // close connection mysql_close(); // Show message to let them return to the shoutbox ?> <div align="center">Thank you for submitting.<br> Return to the <a href="shoutbox.php">shoutbox</a>! <?php // If NOT submitted } else { // connect to the database include('connect.php'); $query = "SELECT * FROM shoutbox ORDER BY id DESC LIMIT 10"; $result = mysql_query($query); // Create a table ?> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <? // Run a While loop for the rows while($c = mysql_fetch_array($result)) { ?> <tr> <td><a href="mailto:<? echo $c[email] ?>"> <? echo $c[author] ?></a> says: <div align="justify"><? echo $c[message] ?></div> </td> </tr> <tr><td>on <? echo $c[date] ?> <hr noshade="noshade" size="1" style="border-style: dashed" color="#000000" /></td></tr> <? } ?> </table> <form method="post" action="shoutbox.php"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td>Username :</td> <td><input type="text" name="username" class="forms"></td> </tr> <tr> <td>Email :</td> <td><input type="text" name="email" class="forms"></td> </tr> <tr> <td>Message :</td> <td><input type="text" name="message" class="forms"></td> </tr> <tr> <td colspan="2"><input type="submit" name="submit" value="Speak!" class="subtmit"></td> </tr> </table> </form> <? } mysql_close(); ?> </body> </html> Save it and call it shoutbox.php. if you have any questions don't be shy and ask me here: odirima@walla.co.il
  17. http://forums.xisto.com/no_longer_exists/ read the guide and everything will b clear for u btw, guide is a must if u wanna play the game correctly u run a province in kingdom of 25 provinces. so u r member of that KD with 24 other ppl in it... u comunicate with others and help each other and sometimes war another KD, ect... 50% of the game is comunication with your KD-mates... dont forget that!! there is ingame forum for that purpose and private msgs. for newbie i suggest World of Legends server. battefields is for xp players and there is realy hard competition. genesis is test server and not so popular.. thanx,
  18. *Wonders how you can have a site without a host???* :confused:But I'll come help.
  19. iGuest

    table

    a table for a cheat site like http://www.gamesradar.com/ or http://forums.xisto.com/no_longer_exists/
  20. Ima rate teh sig a 8/10 and the av a 7/10 because i think the av can do a bit better but overall they both good, heck i can't even do those brush things how you do them?
  21. I would help but seems i got my own graphics site hehe. Its called Subziro Designs and I'm looking for staff myself. I would show you what my site looks like but I got no host, I wonder if freenuke will host me, hope they do
  22. iGuest

    My Sig

    try an effect with the text to blend it together or make it noticable, also why is it sorta bad quality? i would make it clear and better quality to earn my 10/10 earning :wink:
  23. What do you guys think of the menu bar?
  24. Im quite fond of the "Dreamweaver MX Bible" written by Joseph W. Lowery...it includes a tutorial and demo of dreamweaver on the cd that comes with it and claims to be 100% comprehensive....i pretty much agree with that statement
  25. I like sig 2 better, sig 1 looks darker and a little not as clear as sig 2
×
×
  • 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.