Jump to content
xisto Community

cragllo

Members
  • Content Count

    954
  • Joined

  • Last visited

Everything posted by cragllo

  1. When I read this i thought you mean input textarea, But anyway, awesome tutorial, plain and simple, easy to follow.
  2. Thanks peeps, I just need to expetiment more, learn more trick, follow more tutorials, them maybe I will have ideas and be able to do good graphics. I used to be so creative when I younger, then I lost it all when I was about 11
  3. Saw all you doing it, to i thought id conform and join in. Not the best Ive ever seen, but it sorta reflects... me. I love monochrome
  4. Awesome! Shame about IE not supporting png transparancy (unles you use special css) glad i dont use it
  5. WOW, just saw this, lol, that looks awesome, im gonna have a go at making my own
  6. I still think its a problem with FTP and cPanel! Just my little theory...
  7. Maybe its DNS problems, as for the forum problem, i have no idea.
  8. So... Do you have 330 credits to give away? 789!!! WOW!! how have you got so many? I got 12
  9. cPanel updates automaticaly, and when it does, sometimes it takes all the sites down for a while, they do come back up again, maybe that is what happened.
  10. The governent have stated that over 50% of internet connections in the UK are now broadband, by large images i dont meam 1000x500, more of abour 400x200, some sites dont use graphics at all to please dail-up users,!A site with no graphics is better than a site with bad graphics!"
  11. Windows xp's default resolution is 800x600, The reason, tonnes of people still has 14" monitors, now almost a decade sinse 1024x768 became an 'normal' screen resolution, Windows Vists (as far as i know) will have a default screen resolution of 1024x768, 800x600, i hope, will soon be only for people who have tiny monitors or cant see well, no more trying to cram in all you can to fir an 800x600 resolution, the standard is soon to be 1024x768! Finnaly!All my sites are designed to fit in a 800x600 resolurion, to please everyone, Im am about to change this, Im tired of running out of room, or people complaining that images are too small, we live in the age of 10mbps connection, large images re fine these days.Say no to small resolution, join the masses and get big!!!!!!over 60% or was users have a resolution of 1024x768 or greater! If your still at 800x600 or smaller, try 1024x768, you may find that you are viewing sites as they were designed to be viewed.
  12. If you actualy set the password for the profile, you WILL need a password, if you dont you can just press enter, if the password has been set and you just press enter, it dosent load a profile, just default settings.
  13. Personaly I think Windows 98se was the most stable, XP has too much crap on it, ME has the most bugs by far!! I had it, decided to downgrade to 98se and everything was 80% better!
  14. Blank banners and button for other users to use as bases, templates for sites and forums, website baclground graphics.... I want it to be a webmasters resource where users share their created graphics.
  15. they are pretty awesome templates, better than i can do, ive lost my creativity
  16. This tutorial will give you the code needed and tell you how to implement it. First off you need to create a file called mailing.php this will be the file that processes the adding of emails to the list. <?php$email = $_POST['email'];$file = fopen("mailing.txt", "a");fwrite($file, "\n" . $email);fclose($file);header("Location: mailing_thankyou.php");?> Next you need to create a file called mailing_thankyou.php, simple a page thanking them for signing up. Now create a file called mailing.txt with nothing in it, when uploaded to the server set it writable (chmodd 666 or 777). Now you need to form for teh people to enter their email address, put this on any page <form action="mailing.php" method="post" class="style16"><input type="text" name="email" size="30" value="your email here!"><input type="submit" value="GO!" name="submit"></form> Now you need a file to send the newsletter, create a file called anything you want. <?php$send = $_POST['send'];if($send){ $email = $_POST['email']; $emailfile = file_get_contents("mailing.txt"); $emaillist = explode("\n", $emailfile); foreach ($emaillist as $value) { mail($value, $_POST['subject'], $_POST['message'], "From: $email"); } echo "<b>Email sent!</b><br />";}?><form action="<?php $_SERVER['PHP_SELF']; ?>" method="post"> <table width="481" border="0" cellspacing="0" cellpadding="0"> <tr valign="top"> <td width="84" align="right" valign="top" class="style32">Subject:</td> <td width="397" align="left" class="style32"> <input name="subject" type="text" id="subject" size="41" maxlength="100"> </td> </tr> <tr valign="top"> <td width="84" align="right" valign="top" class="style32">From:</td> <td align="left" class="style32"><input name="email" type="text" id="email" size="41" maxlength="100"></td> </tr> <tr valign="top"> <td align="right" valign="top" class="style32">Message:</td> <td align="left" class="style32"> <textarea name="message" cols="37" rows="4" id="message"></textarea> </td> </tr> <tr valign="top"> <td align="right" valign="top" class="style32"> </td> <td align="left" class="style32"> <input name="send" type="submit" id="send" value="SUBMIT"> <input name="Reset" type="reset" id="Reset" value="RESET"> </td> </tr> </table></form> Thats you all done, to send the newsletter, simply go to the file you just created fill in the spaces, and click send, there is no warning/confirmation. so check before you send! Please note: I will be improving on this script as time goes on, hopefuly to make it able to remove people from the list too, So check back soon!
  17. Its also different on different windows versions different on ME, 200/NT, XP
  18. Thanks people, its just when it comes to 'good' graphics, I realy suck. I opened this site something like 2 years ago, Used to have some good stuff on there, but the site has since gone dead.
  19. Well, my site is sort of automated, when you sign up and login, you can add content yourself, http://forums.xisto.com/no_longer_exists/ you could maybe be in-house staff, featured artists or something
  20. Things like blank buttons (88x31) and banners (468x60) or larger, standard sizes, Maybe even whole website templates and CMS skins. Also, abckground images and such...
  21. Hello, I run http://forums.xisto.com/no_longer_exists/ hosted here at Trap, I want it to be a webmasters resource, I have a few templates and graphics already, but hardly enough, now you guys are some of the best ive seen, and was wondering if you can submit content to the site, Even become a moderator im my forums, I promis Will promote it soon, I havent had enough time latley. Thanks, Craig.
  22. Well, i never even kenw that msn has a maps service, shows how good it is :DAs for google moon, cheeeeese!
×
×
  • 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.