Re: [PHP-DB] Email Article, Print Article

2005-10-03 Thread Leo G. Divinagracia III
[EMAIL PROTECTED] wrote: Hello, I am running an article-based site, where I would like to add two buttons: print this article and email this article. Does anyone know where I could look to find out how to program this code into my article.php page? anothing this is to use CSS to st

Re: [PHP-DB] Email Article, Print Article

2005-09-30 Thread Tramelw
Thank you Bastian and Micah. I had no idea the concept was so straightforward. I guess I was close to making a mountain out of a molehill. Thanks again, E. Wonder

Re: [PHP-DB] Email Article, Print Article

2005-09-30 Thread Micah Stevens
No, but it's pretty straightforward, just have each link to another script along with a get variable that defines which article (assuming they're in a database or something) email_article.php?article=$articleID print_article.php?article=$articleID email_article.php: (pseudo code) print_arti

RE: [PHP-DB] Email Article, Print Article

2005-09-30 Thread Bastien Koert
pulls the article from the storage and either embeds it or attaches it to an email...depending on how you want to handle it... Does that help? Bastien From: [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] Email Article, Print Article Date: Fri, 30 Sep 2005 13:50:37 EDT Hello

[PHP-DB] Email Article, Print Article

2005-09-30 Thread Tramelw
Hello, I am running an article-based site, where I would like to add two buttons: print this article and email this article. Does anyone know where I could look to find out how to program this code into my article.php page? Thanks in advance, Eddie Wonder