[PHP] Newline features and differences between php3 and php4

2002-04-18 Thread Chris Hall
wline definitions to seperate data, and it works terrific. But in php3 mail() doesn't seem to parse the newline tags, and it prints them in the email body. Workarounds/fixes? Thanks in advance. -- Chris Hall hardwired industries -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] functions...

2002-01-08 Thread Chris Hall
function lala() { do i HAVE to define a variable or argument function lala($var) { or can i use it like: lala($stmt); will $stmt become part of the function? -- Chris Hall hardwired industries -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP] Here ya go..

2002-01-05 Thread Chris Hall
there, but I could be wrong..if anyone has conquered this problem ( i know some of you have ) help is in dier need. Thnx in adv. --- Chris Hall Web Application Development --- hardwired industries -- PHP General Mailing

[PHP] Re: session class

2001-12-27 Thread Chris Hall
session variables are accessible the same as when you set them : session_register('temp'); $temp = 1; on another page: session_start(); /* so that you can access your session variables... echo "$temp"; /* this will echo "1" and so you know you cannot define a variable for your class inside a f