Jump to content

Anders Moen

Members
  • Posts

    866
  • Joined

  • Last visited

Everything posted by Anders Moen

  1. But seriously...should I just go for it?
  2. Anders Moen

    PHP Websites

    IIS is for Windows Servers isn't it? It might be possible, because I don't have any background with this, but I don't it work.But you can install XAMPP which includes PHP, MySQL and Perl.
  3. O_oWhen will the XHTML 2.0 come (if it already hasn't)? I wanna be even more excact with my coding lol
  4. Either height="100%" or style="height: 100%;" I guess. I'm not sure if it'll work, though.
  5. Contact form in PHP: Click here (Epleweb.com)
  6. Anders Moen

    link

    Awwww! Poor you.No Internet = the worst time ever!But you could go to the site at W3Schools where you can download the Internet without that your parents knew:p haha! It's a funny joke :)But yeah...I want the search engine script, though I've made my own while you've been gone but I can't make it work on my other site and that's weird because it worked on another site I've made. :S
  7. Aha! That was a sentence which made sence, though it was...not making any sence:pBut thanks, I'll try flirt with her lol.
  8. Don't know what I have to lose, but I don't wanna get a no...lolAnd please don't say now: "You will get some no's through your life" or something like that:p
  9. I know it's not, but I just don't know how to tell her, and when to tell...I've tried but I just can't get it out lol
  10. I know...it would be stupid wait months to see if she answers yes, but it would be really dumb if she said no too.Yeah...I think we come along pretty nice. Haven't argued yet, and I've known her for about...is it 3 years?
  11. Okay, this is crossing my edges! Hello guys! We're talking about school here =/But anyways...should I just tell her? What if she says no...I still have some months left with her in the class.
  12. I didn't think when I wrote! I could easily have translated that myself :)Thanks anyway
  13. I can't be bothered to find out how you can code it, but you can use this code in the <head> tag </head>:<!--[if IE]><meta http-equiv="refresh" content="0;url=for_example_to_a_folder_called_ie_users_or_something/" /><![endif]-->and there you do the things you need to do to make it look good in IE.
  14. Yeah, there are some, but in my class it's only me (junior high school still, soon done and then I will hopefully come into "media og kommunikasjon" (Jonas: translate for me please), where we at least do some coding. Just need to start doing schoolwork so I get better marks so I get into that school. A lot of people are gonna search there this year :)
  15. Hehe, nice :)I might make her and her friend a website soon, (hehe). Already been asked and this is starting to go really off topic :)Hehe...too many people are asking me to make websites now. But since it's friends and stuff, I will do it for free, but if I'm gonna use the CMS system I've made (which I probably need to), I will charge with some money because I've spent like 2 months making it. I only need to make a comment system for it and I'm not 100% sure how. I know how to count, but I don't know how to set up everything =/
  16. Sure...If you want to, go ahead, though I'm not completely sure of what you mean.But I just haven't had time to work on the forum lately, because I'm working on my personal website too, (finally), but right now it's not the best. Comments about it? Tell me what you think of it. Since this isn't my topic, just send pm or something...
  17. Thanks everyone heheSkemcin: I have no idea who that girl is now. I just took a screenshot of a template I found (not free template)Thanks for your advices...even though it's really off topic for this forum.But yeah...it would seem really geeky (or something) if she went here. But when I started coding at school (I was bored), she sat next to me and she just...like...how to say it, haha! She was really amazed since I took everything outta my head:p
  18. Hehe, she'll know in case. She doesn't even know I like her...I don't know how to tell her lol...And I don't even got a pic of her O_o
  19. Anders Moen

    CSStags

    I ran I ran it through the validator, and you had 63 errors on that little site. Link to checked site at validator
  20. Anders Moen

    CSStags

    Well...you have a lot of errors...Like this:<table wdth="100">wdth? You mean width don't you?And on every link in the menu, you have it like this:<td valign="top" class="takecharge"a href="doctor.htm">You and The Doctor</a></td>You need to write:<td valign="top" class="takecharge"><a href="doctor.htm">You and The Doctor</a></td>instead if that's gonna work.Maybe you should take it through the validator to straighten up some errors?
  21. Use the example code from W3Schools instead.upload.php <form action="upload2.php" method="post" enctype="multipart/form-data"><label for="file">Filename:</label><input type="file" name="file" id="file" /> <br /><input type="submit" name="submit" value="Submit" /></form> upload2.php <?phpif (($_FILES["file"]["type"] == "image/gif")|| ($_FILES["file"]["type"] == "image/pjpeg")&& ($_FILES["file"]["size"] < 20000)) { if ($_FILES["file"]["error"] > 0) { echo "Return Code: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />"; if (file_exists("upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]); echo "Stored in: " . "upload/" . $_FILES["file"]["name"]; } } }else { echo "Invalid file"; }?> I use this code at the CMS system I made, and that works just fine. You can test it here. Just click Login to log in. I made a demo user because that's a test site for people who wanna try it
  22. Awardspace.com. I don't think there's any banners there.You just use an FTP program, such as SmartFTP or something else to upload your files.
  23. Yeah, I know. I got an answer at a Norwegian webdesignforum some minutes (or an hour, don't remember) after I posted it here.
×
×
  • Create New...