Forum Moderators: coopster

Message Too Old, No Replies

php mailer with database results

         

salo

5:15 pm on Aug 1, 2006 (gmt 0)

10+ Year Member



i am starting to write a php script that will "email this page", the question is more with emailing a results page. the page is first displayed from a pretty intensive search on a database (mysql). the problem is i don't want to run this script again just to email the results. the results page can also be sorted by different columns, and whichever way the user sorts the column, that is the way i would want to send the email as. the reason not to run the search script again is because of the amount of time taken to display results (it is a large database).

anyone have suggestions?

thanks,

jatar_k

6:26 pm on Aug 1, 2006 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



the only option I really see is actually creating the page when you generate it, then you could use that copy to email.

salo

4:26 pm on Aug 7, 2006 (gmt 0)

10+ Year Member



turns out that's what i decided as well... thanks for the response.