This is a discussion on grrrrrrrrrrr within the PHP Language forums, part of the PHP Programming Forums category; On Mon, 18 Aug 2003 20:09:41 +0000, Tony Wilson wrote: > "Jeffrey Silverman" <jeffrey@jhu....
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
On Mon, 18 Aug 2003 20:09:41 +0000, Tony Wilson wrote:
> "Jeffrey Silverman" <jeffrey@jhu.edu> wrote in <snip!> >> >> Not nearly enough information. >> >> Are you getting any error messages? >> >> > nope... > > just a white page You really got zero errors?? I copied and pasted the code and got "Parse error..." Looks like you have an extra dot "." on this line: $message = $ta. $taa. $tb.; and are missing a dot here (or should at least get rid of the dual double-quotes): $tb = "\n\nPlease visit http://www.tonydisabled.com to see list.""\n \nThank You.\n\nTony Wilson"; I *strongly* suggest you turn on error reporting, as it seems to be off. More info: http://us2.php.net/manual/en/ref.err...rror-reporting -- Jeffrey D. Silverman | jeffrey AT jhu DOT edu Johns Hopkins University | Baltimore, MD Website | http://www.wse.jhu.edu/newtnotes/ |
|
|||
|
Tony Wilson wrote:
> Even though I understand PHP to be a server side language,is there a way > I can run PHP on a Windows 2000 Pro desktop? To test run a php file, I > have to upload it to server and run it via browser which is becoming a > pain. You can run a simple webserver setup on almost any computer. For Windows, I usually use a package called "Uniform Server" that has Apache, PHP, and MySql, is a small download, and runs without installation. You can find it at http://www.sourceforge.net/projects/miniserver As to your main question: I'll look into it when I have more time later today, if you haven't gotten an answer by then Jochen -- /** * @author Jochen Buennagel <zang at buennagel dot com> * @see http://www.sourceforge.net/projects/zang */ |
|
|||
|
Jeffrey, Tony:
yeah sorry guys.. dunno where my head was at today i meant "\r \n"; Please excuse my typo :) - jpdr TTG Jeffrey Silverman wrote: > On Tue, 19 Aug 2003 08:49:15 +0000, haptiK wrote: > > >>Hi Tony, >> >>Just wanted to make special note that if your sending HTML email with >>headers and you think your readers will be using outlook.. use "/r /n" >>instead of "/r/n" outlook seems to think its neat to ignore common >>concepts and email will show up as plain text if you dont have a space >>there :). >> >> - jpdr >> TTG > > <Snip!> > > I think you mean backslash-r-backslash-n > \r\n > > not forward-slash > /r/n > |
|
|||
|
In article <y%70b.5863$Ki3.635782@news20.bellglobal.com>,
tony@tonydisabled.com says... > Hi..... > > > ------------------------------------------------------------------------- > <html> > <head> > </head> > <body> > header("Location: http://www.tonydisabled.com/Groceries/foodpw.html"); You can't do that, for starters. You're trying to send header information after you've already written content. -- Hywel |