[PHP] Re: phpwiki save button

2002-01-25 Thread Tim Bogart
On Thursday 24 January 2002 10:07 am, Tim Ward wrote: > I think you just need to add the timestamp to the start of the story before > you save it, > i.e. > $content = date("d/m/Y H:i:s - ") . $content; > Where do I put this? I'm still floundering. Sorry. btw...Thanks for all your help so far.

[PHP] Re: phpwiki save button

2002-01-24 Thread Tim Bogart
So...I would create a new table in my postgresql database that's being used which would contain the timestamp. I would populate that table when the savepage.php was executed, extract the data from that table and write it to the screen, then execute the save. Does that sound right? Tim On Th

RE: [PHP] RE: phpwiki save button

2002-01-24 Thread Tim Ward
x27;d be surprised if the table doesn't already have a field like that. Tim www.chessish.com > -Original Message- > From: Tim Bogart [SMTP:[EMAIL PROTECTED]] > Sent: 24 January 2002 15:43 > To: Tim Ward; [EMAIL PROTECTED] > Subject:

Re: [PHP] RE: phpwiki save button

2002-01-24 Thread Tim Bogart
No, you're not missing a thing. I just need to know exactly where to put the line you sent me. The word "content" is mentioned a few times in the script and I'm not a programmer, remember? Could you please indicate exactly where you would put the line you sent me? I'm sure you are taking fo

[PHP] RE: phpwiki save button

2002-01-24 Thread Tim Ward
I think you just need to add the timestamp to the start of the story before you save it, i.e. $content = date("d/m/Y H:i:s - ") . $content; or am I missing something? Tim www.chessish.com > -Original Message- > From: Tim Bogart [SMTP:[EMAIL PROTECTED]] > Sent: 24 Januar

[PHP] Re: phpwiki save button

2002-01-24 Thread Tim Bogart
On Thursday 24 January 2002 06:36 am, Tim Ward wrote: > What is it you actually want to do? Add the current date/time or a > timestamp entered on the submitting form? yes. That is exactly what I wish to do. See date() for the former. Once > you've got your stamp in a format you want just add i

[PHP] RE: phpwiki save button

2002-01-24 Thread Tim Ward
What is it you actually want to do? Add the current date/time or a timestamp entered on the submitting form? See date() for the former. Once you've got your stamp in a format you want just add it to the front of the story before saving. Give us a bit more detail about what it is that isn't working