websaint
Members-
Content Count
34 -
Joined
-
Last visited
Everything posted by websaint
-
I know of a really great message board you can get for free without adds, very costumizable and with a lot of cool smileys You can get it in english or german. Just go to http://www.cyberlord.at/ '>cyperlord.at. You can view a sample(mine) http://www.cyberlord.at/forum/.?id=1&err=3 https://3'>https://3 https://3'>https://3'>here. If you're not happy with that one then you should try https://www.hugedomains.com/domain_profile.cfm?d=bbfreedom&e=com '>bbfreedom.com for an add free phpbb message bord whith several premade skinns to choose from.
-
Hi people!! I'm making a site containing links and reviews on the very best website tools and stuff your site like guestbooks, forums, hosts, editors.... Anyone want to suggest something?? What is your favorite free thing?? Tell me about a site you like!! By the way, I'd like to tell you about a host offering everything just like Altahost except you don't need any forum posts. Check out http://netrulon.com/ '>Netrulon.com But the nice thing about this forums of cours, is that you can get a lot of help!!
-
Just a little recommand for those of you who want a free, good looking and easy made flash intro for your site. You shoul all visit flashberry.com!!! It's so great I just had to share it!!
-
I just used the demo cpanel login and entered my own information(the link at the site you get to before entering the forums). I also think you can login from just http://www.altahost.com/. The link in you're post worked for me. Just hope you can make it work. I also experienced that waiting a day often helps with problems at Altahost. Don't know if finding the login site is exactly your problem, but maybe the fact that you can't log in. Can't help you in that case, but I would recommand that you check your password is right, and ask the staff if you still can't make it work.
-
Hi!! I was just wondering if anyone knew how to add a different template to an invisionfree board??? Where do I find these kind of templates?? Please help me!!
-
Hi!! I was wondering if anyone knew how to create a snow effect on your site. You know the kind of thing where a chosen image will fall like snow from the top of your site. I would really like to learn how to make that work. I just can't seem to figure out how to do it, so I was kind of hoping that some of you would like to help me?? Please?? I really need this for my site.
-
I just tought I'd show you people a script that will let your visitors bookmark your site. All you have to do is copy this script and change the url to yours! Do you wish to bookmark my site? Click < a href="javascript:window.external.AddFavorite ('http://http://ww38.yoursite.com/ $PHP_SELF;?>','YourSite.com')"> here.</a> That's all. pretty simple. Hope you find it at least a bit helpful!
-
Sometimes it could be useful to know how many users you got online at the moment. You can do this very easely by simple adding this script to your site: <? session_cache_expire (30); session_start(); function users() { $count = 0; $suksess = opendir(session_save_path()); if ($suksess == false) return -1; while (($file = readdir($suksess)) != false) { if (ereg("^sess", $file)) $count++; } closedir($suksess); return $count; } echo "Users online: " . users() . "<br>"; ?>
-
Hi!! I'm going to show you how to make your own counter useing php!! It's really easy and you woun't have to keep seaching the net for free and bannerless counters. So here comes the script: <?php //Simple class for counting visits //Written by WebSaint class Teller { function count() { $countfile = file("alle.txt"); $count = $countfile[0]; $count= $count + 1; $fp = fopen("alle.txt","w"); $fw = fwrite($fp,$count); fclose($fp); echo $count; } } $obj =& new Teller; $obj->count(); ?>Then add this to display the number of visitors: <p>Number of guests visiting my site: <? include('alle.txt'); ?>.</p> That's it. I hope you'll find the script useful!
-
Hi!!! I just wanted to show you the very nice emailer script I've created for my site. The script lets your visitors email you just by filling out a form that you can place anywhere on your site. All you have to do is to copy and paste the script below. The only thing you'll have to change about it is the email adress where you want to recieve your form mails. This script has been working really well form me, and I hope it will for you as well. Good luck, and I hope you can make it work on your site!!! <html><head><style type="text/css"> TD {font-family: Arial; color: #000000; font-size: 8pt;} INPUT {font-family:Verdana;font-size:10pt;BACKGROUND-COLOR: #FFFFFF;color:#000000;} TEXTAREA {font-family:verdana,helvetica,sans-serif;font-size:10pt;BACKGROUND-COLOR:#ffffff;color:#000000;} </style></head> <?php if ($action == "sendmail"){ $to=$recipient; $mess = "From: $name\n $message\n"; $mailheaders="Return-path: $name <$email>\n"; $mailheaders.="From: $name <$email>\n"; $mailheaders.="Reply-To: $email\n"; $sent=mail(trim($recipient), $subject, $mess, $mailheaders); if($sent){echo"<FONT SIZE=2 face=arial>Your Email has been sent to <B>$recipient</B></FONT>";}else{echo"<h1>The mail could not be sent! Sorry!</h1>";} } if ($action == ""){ ?> <body bgcolor=#f5f5f5> <table width=100% border=0 cellspacing=0 cellpadding=0> <form name=mail method=post action="?action=sendmail"> <td width=59>Your Name:</td> <td width=187> <input type=text name=name size=28> </td> </tr> <tr> <td width=59>Your Email:</td> <td width=187> <input type=text name=email size=28> </td> </tr> <tr> <td width=59>Send To:</td> <td width=187> <input type=text name=recipient value="youremail@domain.com" size=28> </td> </tr><tr><td>Subject:</td><td> <input type=text name=subject value="" size=28></td></tr><tr> <td width=59>Message:</td> <td width=187> <textarea name=message wrap=VIRTUAL cols=85 rows=15></textarea> </td> </tr> <tr> <td width=59></td> <td> <input type=submit name=submit value=send mail!> </td> </tr> </form> </table> </body></html> <?php } ?>
-
Hi!! I just wanted to show you a nice birthday script I've created. You may use this on your site to impress your visitors and friends. This script will atomaticly write " Happy birthday ...." It could be very nice and helpful if you're no good at remembering birthdays. Here comes the script: <? /* Sarah's birtday is on the date 11-28 (the 28th of november) Connor's birthday is on the date 12-12 (the 12th of desember) Mary's birthday is on the date 1-1 (the 1th of january) The script is put wherever you what the congratulation to appear. */ //add the birthdays like this MM-DD, in the same order as $name $day = array("11-28", "12-12", "1-1"); //Here you'll have to put the names in the same order as $day $name = array("Sarah", "Connor", "Mary"); $today=date("m-d"); $number = count($day); for ($k=0;$k<$number;$k++) { if(strcasecmp($day[$k],$today)==0) { echo "<p>Happy birthday $name[$k]!</p>"; } } ?> That's it! Just copy and paste the script, but you of course have to edit what's marked in red. The orange stuff is just my comments. You don't have to copy that. Hope you can make the script work!!
-
I've just posted a tell-a-friend script you can use in this category. Just click here to go there and view! Hope you will find it being very helpful
-
Tell-a-friend script Make a tell-a-friend script with php
websaint replied to websaint's topic in Programming
I know the script is very simple and easy but at least I've tried to fix it up a bit now Hope that someone will find this useful!! -
If you need to password protect a page on your site, then you should take a look at this. I'll show you how to make a simple password protection for your site right here!! Just copy and paste the php script below: Put this in a file you call login.html <form action="[color=orange]login.php[/color]" method="post"><input type="text" name="login"><input type="password" name="passwd"><input type="Submit"></form>[b]Put this in a file you call [color=orange]login.php[/color][/b] (you'll have to embed the content of your secret page with this script)<?if (empty($_POST['login'])){ exit();}if(strcmp($_POST['login'],"[color=orange]correct username here[/color]")==0 && strcmp($_POST['passwd'],"[color=orange]correct password here[/color]")==0){?>[color=orange]<html><body><p>Bla..bla..bla...You're secret page content should be added here!!</p></body></html>[/color]<?}else{echo "[color=orange]Wrong username or password[/color]";}?> That's all you have to do and you have a password protected page!!
-
Hi!! I'll show you how to make a simple tell-a-friend script using php. If you put this on your site, your visitors will be able to recommend your site to a friend. This can be good promotion for your site. It's quite easy to set up too. Just copy and past the script below. Put this where you want the form to appear: <form action="friendtell.php" method="get"> <b>Tell a friend:</b> <input type="text" size="20" name="from" value="Your email"> <input type="text" size="25" name="to" value="Friends email"> <input type="Submit" value="Recommend"> </form> Put this in the file friendtell.php <p class="storre">Your friend has been told!</p> <? $myname = $from; $myemail = $from; $contactemail = $to; $message = "<h2>Hi!!</h2>\nI wanted to tell you about a cool site I found. The url is http://ww38.yoursite.com/.<br><br>Mvh $from."; $subject = "From a friend."; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; $headers .= "From: $myname\r\n"; $headers .= "To: $contactname\r\n"; $headers .= "Reply-To: ".$myname." <$myreplyemail>\r\n"; $headers .= "X-Priority: 1\r\n"; $headers .= "X-MSMail-Priority: Low\r\n"; $headers .= "X-Mailer: Just My Server"; mail($contactemail, $subject, $message, $headers); ?> Yepp, that's all. Hope you can make the script work!
-
When you are coloring things with html you need to know the rgb/hex value for the color you are going to use right? Well that could be a problem if you don't remember all the values for all of the different colors by heart. I decided to help all of you webmasters by creating a html color chart that you can use. Just bookmark the page and you'll never have to worry about colors again. Click here to see the color chart. I hope you will find this very useful.
-
Hi!! I have posted over 10 posts in the forums and I'd like to get my mini c-panel so I can start upload my site without all the greate features.. Does anyone know how I can get there?? I just can't seem to find any buttons for that.
-
Than you so much!! But how do I upload music to a url? Do I need a host that enables music files?? I don't know how to host music.!..
-
Hi!! Does anyone know how to I can add backround music to my webpage? Can I do it with html?? Been wondering for a while now, and I need help!!!
-
Promote your website promotion guide
websaint replied to kokushta's topic in Websites and Web Designing
Thank you so much!!! That toturial really helped me a lot! Now I can start promoting my site big time!! -
Does enyone know how to add background music to your webpage? Can you do it using html??? https://s" /> Notice from microscopic^earthling: Moved to Designing > Web & HTML . Absolutely wrong forum.
-
The best editor ever!! The title sais it all.
websaint replied to websaint's topic in Websites and Web Designing
I don't think WebPageMaker is limited at all. You can add all sorts of scripts to your pages. It's really great and easy. You'll save a lot of time on using this editor!! -
I just really wanted to recomand a great editor called WebPage Maker. It is so easy to use. You need no html knowlege. Simply drag and drop objects onto the page and position them freely in the layout. It comes with several pre-designed templates that help you to get started. It also includes ready-to-use navigation bars that can be inserted into the page. Additional features include built-in color picker, Java script library, image library and built-in FTP client. The really greate thing about it is that you can hide all sort of comersials stuff by simply adding something else over it. When you upload a file to your host, the banners on your page won't show. Everything is put on to of it for some reason. WebPageMaker is not just for starters. It really is greate, and has a lot of features. It's not completely free, but it's totally wort the money. Check out their site now at Webpage-maker.com It's the best choise!!