Jump to content
xisto Community

tempest

Members
  • Content Count

    41
  • Joined

  • Last visited

Everything posted by tempest

  1. Yeah, this year World Cup is bit amazing! You know I can write a bit about each team, which i amaiz Let`s start with Ghana, I didn`t belive, that they will get out of group stage, and that now fair with them - it`s first cup for them but it 1/8 round they got to play to Brazil. Unluckly!Ukraina and Swiss didn`t belive, that they will get out of groups too! About Swiss i didn`t belive before cup, but about Ukrain after their first game!Austraila made good start too, but then in game with Itlay that stupid referee made stupid penalaty! That sux!Franc made offull start, but now it looks like they will win the cup!I think that Franc gonna win today! And in final they will win Italy 1:0But Germany will win Portugal 2:0 in 3rd place game!
  2. Hello! I run pass some tutorial here and saw, that here isn`t normal tutorial for simple feedback (contact) form! So, I`m going to write one here! Let`s start: <table width="400" border="0" align="center" cellpadding="3" cellspacing="1"><tr><td><strong>Contact Form </strong></td></tr></table><table width="400" border="0" align="center" cellpadding="0" cellspacing="1"><tr><td><form name="form1" method="post" action="send_contact.php"><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td width="16%">Subject</td><td width="2%">:</td><td width="82%"><input name="subject" type="text" id="subject" size="50"></td></tr><tr><td>Detail</td><td>:</td><td><textarea name="detail" cols="50" rows="4" id="detail"></textarea></td></tr><tr><td>Name</td><td>:</td><td><input name="name" type="text" id="name" size="50"></td></tr><tr><td>Email</td><td>:</td><td><input name="customer_mail" type="text" id="customer_mail" size="50"></td></tr><tr><td> </td><td> </td><td><input type="submit" name="Submit" value="Submit"> <input type="reset" name="Submit2" value="Reset"></td></tr></table></form></td></tr></table> Paste this code into Notepad and save it as contact.php . That`s the first step! Ofcourse you can change all the questions or add some! Next step is to creat in-comeing form, so here is code for it - <?php// Contact subject$subject ="$subject";// Details$message="$detail";// Mail of sender$mail_from="$customer_mail";// From$header="from: $name <$mail_from>";// Enter your email address$to ='someone@somewhere.com';$send_contact=mail($to,$subject,$message,$header);// Check, if message sent to your email// display message "We've recived your information"if($send_contact){echo "We've recived your contact information";}else {echo "ERROR";}?> Save it as send_contact.php There is something more, that you need to do, so find // Enter your email address $to ='someone@somewhere.com'; in second code and change someone@somewhere.com to your e-mail! In my mind that got to work! http://forums.xisto.com/no_longer_exists/ - that`s how it looks for me!
  3. It looks pretty nice and funny:) Try blending more render and change sub-text font!9/10
  4. It may look better! Everything is OK, just in right corner those flames looks bad. Try more blending theM!
  5. Buttons should change when mouseover, but as links aren`t working yet, then I havn`t do that too! And with time i start hating that news, and contect area. I should be white!
  6. Click Here to see my new web-page! Just links aren`t working jet and there isn`t written that page is best wived with Mozilla FireFox 1.5.0.1 with resolution 1024x768 pixels! Please comment and rate!
  7. You should get found, which you like and is "made for you"! You know, probaly you don`t like Sony Ericsson, so do I, but Sony Ericsson W550i realy is nice! Phone`s size: 93 x 46.5 x 22.5 (mm) Weight: 120 g. Activate your calls with voice Calculator, alarm-clock, clock, organizer, daybook, date, games Infra-red Conference call Dynamic storage: 240000 Kb Numbers in phone-book: 1000 WAP GPRS Bluetooth MP3 FM Digital Camera: 1.3 Px, 4x digital zoom That`s what I call phone!
  8. Nice sig, sexy girl! Nice colors, just don`t like border again! 8/10
  9. That`s nice! Do you like soccer? I do a lot! But I don`t know, is Henry enaught good:) Nice brushing, nice blending, just font looks a bit bad, and maybe border is too Simple!7/10
  10. I like your site! Colors are nice, layout is nice, logo is nice and for mirracle text is nice too:) Jst maybe try to use capital letters for first letter in titles:) 8/10
  11. Ok let`s start! Once I wrote it for school: At first we need questions (php) $form_block = "<p>Quiz</p><form method=\"POST\" action=\"$_SERVER[PHP_SELF]\"><p><strong>What's The Capital City Of England?</strong><br><input type=\"text\" name=\"q1\" value=\"$q1\" size=30></p><p><strong>How Many Letters Are There In The Alphabet?</strong><br><input type=\"text\" name=\"q2\" value=\"$q2\" size=30></p><p><strong>WHat's 3+10?</strong><br><input type=\"text\" name=\"q3\" value=\"$q3\" size=30></p><input type=\"hidden\" name=\"execute\" value=\"1\"><p><input type=\"submit\" name=\"submit\" value=\"Submit\"></p></form>"; That takes the form of a form... You can, of course edit the questions. I will now break that code down and explain the different parts. <form method="POST\" action=\"$_SERVER[PHP_SELF]\"> The reason that any "s (Double quotes) are shown after a \ (Backwards slash) is becouse the PHP Parser will spew out errors if you forget to do this. "POST" Means that it will carry all the data from this form via POST, rather than GET. "$_SERVER[php_SELF]" Means that it will load this page again to process the data from the form. <input type="hidden\" name=\"execute\" value=\"1\"> This will tell the PHP document weather to display the form or process the results. Then, you're gonna need to display the form if ($execute != 1) {echo "$form_block";} if ($execute != 1){ Will find out if "$execute" is not equal to 1. If not, it will display the form like so: echo "$form_block"; Submit: else if ($op == "ds") { That'll do the opposite, it "$execute" IS equal to 1, it will process the answers. Make all the answers in lower case: strtolower($q1);strtolower($q2);strtolower($q3); And the answers, you're gonna need answers if ($q1 == "london") { echo "Question 1 corect!<br/>"; $score = "1"; } else { echo "Try question one again!<br/>"; } if ($q2 == "26") { echo "Question 2 correct!<br/>"; $score = $score + 1; } else { echo "Try question 2 again!<br/>"; } if ($q3 == "13") { echo "Question 3 correct!<br/>"; $score = $score + 1; } else { echo "Try question 3 again!<br/>"; }} You should be able to understand that, from what i've told you in the rest of the tut. So the whole code is this: <?php$form_block = "<p>Quiz</p><form method=\"POST\" action=\"$_SERVER[PHP_SELF]\"><p><strong>What's The Capital City Of England?</strong><br><input type=\"text\" name=\"q1\" value=\"$q1\" size=30></p><p><strong>How Many Letters Are There In The Alphabet?</strong><br><input type=\"text\" name=\"q2\" value=\"$q2\" size=30></p><p><strong>WHat's 3+10?</strong><br><input type=\"text\" name=\"q3\" value=\"$q3\" size=30></p><input type=\"hidden\" name=\"execute\" value=\"1\"><p><input type=\"submit\" name=\"submit\" value=\"Submit\"></p></form>";//Display the form.if ($execute != 1) {echo "$form_block";//OR}else if ($op == "ds") {//Process and display the results.//Make all the user input Lower Case.strtolower($q1);strtolower($q2);strtolower($q3);//Display results. if ($q1 == "london") { echo "Question 1 corect!<br/>"; $score = "1"; } else { echo "Try question one again!<br/>"; } if ($q2 == "26") { echo "Question 2 correct!<br/>"; $score = $score + 1; } else { echo "Try question 2 again!<br/>"; } if ($q3 == "13") { echo "Question 3 correct!<br/>"; $score = $score + 1; } else { echo "Try question 3 again!<br/>"; }}?> Ofcourse you can change the questions!
  12. http://forums.xisto.com/no_longer_exists/ (Called template 4) Don`t use this one. It`s OK, but navigation`s bar isn`t good, colors are bad, and there is too much text in little place. And who`s that old man???? 5/10 for business page http://forums.xisto.com/no_longer_exists/ On first looking this one is much better. Header of page is great! But when you scroll down it`s bad looking. Those orange titls in two lines with huge break. Ugly search, hit counters. No good;) 6/10 http://forums.xisto.com/no_longer_exists/ This one is the best till this MOM. Nice header, nice middle and everything fits Ok. Just in navigations change button style! 7/10 http://forums.xisto.com/no_longer_exists/ This one isn`t perfect too. Both blue colors don`t go toghether fine. Plus orange!!! 7/10
  13. I don`t like your web-site. Sth. isn`t good in it! Five color in one page! Ok that normaly if there are 5 colors, but they all are the them with different tone. Logo`s left-side isn`t good too. Change font style and make URL`s active In news area don`t use the same image for all news...That`s that! 6/10
  14. I`ve got one problem. WHat`s happening if I order Package 1 ( 20mb w/ 500mb BW), are my all credits lost? And then, if I`ve got Package 1 ( 20mb w/ 500mb BW) I have to collect 30 credits starting from 0 to get Package 2 ?
  15. Layout looks Ok. I like the main-background. Everything looks ok, but your page is too comon. You know, pages like your are all around the world net:) That`s the traditional grey, white and green. And that green color is too much. It looks too colorfull. Ohh, and just saw one more problem, you know, your main-background is OK, but it isn`t all around page, you see - sides are white!!!8.6/10
  16. Place this code between <HEAD> and </HEAD> tags. <script language="JavaScript1.2"><!-- function makevisible(cur,which){strength=(which==0)? 1 : 0.2if (cur.style.MozOpacity)cur.style.MozOpacity=strengthelse if (cur.filters)cur.filters.alpha.opacity=strength*100}// --></SCRIPT> Place the following code within all of the image tags you'd like the effect to be applied. style="filter:alpha(opacity=20);-moz-opacity:0.2" onMouseover="makevisible(this,0)" onMouseout="makevisible(this,1)" And your image tag might look like that. <img src="yourimage.gif" width="96" height="134" style="filter:alpha(opacity=20);-moz-opacity:0.2" onMouseover="makevisible(this,0)" onMouseout="makevisible(this,1)"> "yourimage.gif" in last code change to your image URL!!!
  17. I got to say, that the second one is much better. Problem for first is that, that it`s too dark, and thet green color sux! But in the second colors are good, font is nice, just change size of titles... At all I give to first one 6/10, but for second 8/10.That`s my look!
×
×
  • 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.