Click to See Complete Forum and Search --> : hi please help with my website wetickleyourfancy.co.uk


WE TICKLE
07-10-2007, 10:16 AM
hi thanks for reading this we have a website http://www.wetickleyourfancy.co.uk/
i julie have just set it up i would like to do a couple of things

1 put a web counter on my index page. to see how much traffic i am geting but do not like to have a link to some gaming website like the free ones you can get.

2 to have one of the boxs you see on website like
if you would like to email this webpage to a friend. and you fill out your email and the email you would like to sent it to is this just html of is it a program you put on your website

thanks a lot for reading this. and thanks a lot more if you can help me

ryanbutler
07-10-2007, 10:27 AM
Answers:

1). Check out Google Analytics:

http://www.google.com/analytics

I don't think you can put a counter visibly on a page, but in my opinion, that's amateurish.

2). Could you clarify?

mactheweb
07-10-2007, 10:30 AM
You probably don't need to add a counter to see how much traffic you are getting. Check with your host. They probably provide a site statistics program. If you want a good commercial statistics program for $30US try haveamint.com.

And I agree that counters on your pages look tacky. You don't need that just a way to check your visitor statistics.

WE TICKLE
07-10-2007, 10:39 AM
THNAKS
A LOT
the thing i am looking for is a email link you set it to a friends email with your name to show it is not a spam and they get a link to my web site

mactheweb
07-10-2007, 10:30 PM
Glad you like it. Are you Shaun?

WE TICKLE
07-11-2007, 07:38 AM
sorry no

WE TICKLE
07-12-2007, 09:43 AM
still no help with the email to a friend link

WE TICKLE
07-12-2007, 03:28 PM
hi thanks for reading this we have a website http://www.wetickleyourfancy.co.uk/
i julie have just set it up i would like
to have one of the boxs you see on website that .
if you would like to email this webpage to a friend. and you fill out your email and the email you would like to sent it to. Is this just html of is it a program you put on your website

thanks a lot for reading this. and thanks a lot more if you can help me ALLSO the best way to get traffic to my site would help a lot

tracknut
07-12-2007, 04:15 PM
There is a sticky link at the top of this page called "information on FORMS...." that tells you how to set up forms. That's what you want to do.

It needs to be implemented on your server, as far as the program that actually sends the mail. Often this is done in PHP.

Dave

Rozvagyj
07-13-2007, 03:15 PM
the easiest way is to probably set up a *.php page to handle your form and then make a simple form on your main page.


use this code for your php page:

<?php
$to = $_REQUEST['email'] ;
$name = $_REQUEST['name'] ;
$headers = "From: $name";
$subject = "$name thinks you should check this out";

$body = "$name found this GREAT site and thinks you should check it out. Go to yoursiteurl.com" }


$send = mail($to, $subject, $body, $headers);




}
}
?>

<head>
<meta HTTP-EQUIV="REFRESH" content="4; url=URL_OF_SITE_THAT_YOU_WANT_THEM_TO_REDIRECT_TO_AFTER_FILLING_OUT_THE_FORM">
</head>
<p>Thank You. An email has been sent."<br>

<p>You are being redirected. </p>
<p>If you are not redircted in 5 seconds, <a href="URL_OF_SITE_THAT_YOU_WANT_THEM_TO_REDIRECT_TO_AFTER_FILLING_OUT_THE_FORM">CLICK HERE </a></p>;}



and this code for your form:

<form method="post" action="NAME_YOU_SAVED_THE_PHP_AS.php">

<label><br />
Name</label>
<input type="text" style="width: 150px;" NAME="name" maxlength="50" />
<label><br />
<br />
E-mail</label>
<input type="text" style="width: 200px;" name="email" maxlength="50" />

<br /><br />

<input type="submit" value="Submit" name="B1" >
</form>

that should work fine