Click to See Complete Forum and Search --> : Can Anyone Help?????


avril
08-30-2003, 02:35 AM
I'M really sick and tired of making this crap code work. i know it's simple and easy bt right now my head isnt working right so i need help from u guys. PLEASE!!!

The thing is i want to open a new java window on my site. its like this- the visitor clicks on a link and the (medium sized) window opens and gives the info of the particular link. Here's my code- tell me what the hell i'm doing wrong!!

<a href = "http://MY PAGE ADDRESS WHICH I WANT THE VISITOR TO SEE AND LINK IS CLICKED"
onClick = "javascript: window.open('http://MY PAGE ADDRESS', 'tipWindow','scrollbars=yes'); return false" target="_blank" >blah blah blah blah</a>



SECOND, i want to create a simple email form which will allow visitors to send me mail without having to see my email. i have the code for this but it uses Outlook express address (of the visitor) and no one wants to do that. I want the code which will send me mails without the visitor having to use the outlook express address.

CAN ANYONE HELP??? PLEASE PLEASE PLEASE PLEASE PLEASE!!

avril
08-30-2003, 05:25 AM
cmon guys- please help!!!

Fang
08-30-2003, 06:06 AM
If MY PAGE ADDRESS ... is vaild there is no problem.

The email would need a server side language (PHP, CGI, etc).
Try the CGI or ASP forum or a search for "sendmail.cgi"

Charles
08-30-2003, 06:36 AM
1) To open a linke in a new window use something more like:

<a href="http://www.w3.org/" onclick="window.open(this.href, 'child', 'height=400,width=200,scrollbars); return false">W3C</a>

2) To send and receive email without using the users email client you will have to have them submit a form to a server side script that will then forward the message to you. WHat that script will look like will depend upon the server. You will need to find out what scripting languages are available.