Search found 11 matches

by abeterosso
Thu Apr 12, 2007 6:39 am
Forum: Javascript
Topic: How to set value in HTMLBox
Replies: 1
Views: 685

...try this code: is this what you need? <SCRIPT LANGUAGE="JavaScript"> function f1() { document.Form_1.textBox07.value = document.Form_1.select1.value; } </SCRIPT> <FORM NAME=Form_1> <SELECT TYPE="select" NAME="select1" onchange="f1()" <option>Rome</option> <...
by abeterosso
Thu Apr 05, 2007 7:51 am
Forum: Javascript
Topic: little problem in javascript
Replies: 3
Views: 796

feyd | Please use , and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color] ...try th...
by abeterosso
Thu Mar 22, 2007 6:28 pm
Forum: PHP - Code
Topic: [Solved] mail ()
Replies: 15
Views: 2015

I tried many times this evening to send email by my original script....

since 15 minutes my original script works well and the problem is not more present!!!

can a web server go crazy sometimes?

THANK YOU very much for your assistance..
by abeterosso
Thu Mar 22, 2007 6:03 pm
Forum: PHP - Code
Topic: [Solved] mail ()
Replies: 15
Views: 2015

...and what does my script version print?
...my previous reply shows you the result of your scritp....
by abeterosso
Thu Mar 22, 2007 5:41 pm
Forum: PHP - Code
Topic: [Solved] mail ()
Replies: 15
Views: 2015

...problem is still present :? this is the body of the email I receive: ORDER INSERTED FROM ' Tina ' ' Turner ' ADRESS ' Square Plaza ' NUMBER ' 3333 ' CITY ' Honolulu ' TELEPHONE ' 34343434343434 ' - Hide quoted text - EMAIL ' emailaddress@email.com ' Code Q Price Total P001 ' 4 ' (EUR) 1000 (EUR) ...
by abeterosso
Thu Mar 22, 2007 3:19 am
Forum: PHP - Code
Topic: [Solved] mail ()
Replies: 15
Views: 2015

use session_start(); on the top of the file like this
session_start() has been called properly on the top of my page.... I do not post all the code on my page....
by abeterosso
Thu Mar 22, 2007 2:10 am
Forum: PHP - Code
Topic: [Solved] mail ()
Replies: 15
Views: 2015

...any advices?
by abeterosso
Tue Mar 20, 2007 6:13 pm
Forum: PHP - Code
Topic: [Solved] mail ()
Replies: 15
Views: 2015

session_start() hasn't been called?

yes!
by abeterosso
Tue Mar 20, 2007 6:03 pm
Forum: PHP - Code
Topic: [Solved] mail ()
Replies: 15
Views: 2015

[Solved] mail ()

feyd | Please use , and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color] Hi, I am ...
by abeterosso
Sat Mar 17, 2007 4:23 am
Forum: PHP - Code
Topic: php mail sends the mail but body is not visiable
Replies: 13
Views: 2100

...thank you very much!
your answer is very useful for me 'cause I'm developing an application where a confirmation by email is due...
by abeterosso
Fri Mar 16, 2007 11:10 am
Forum: PHP - Code
Topic: php mail sends the mail but body is not visiable
Replies: 13
Views: 2100

//create a boundary string. It must be unique
//so we use the MD5 algorithm to generate a random hash
$random_hash = md5(date('r', time()));

Hi, I'm new to php. Can you explain me this part of your code? Why do you need a random number? Thanks