[PHP] Outlook Express and Miltiple send to Addresses

2001-08-24 Thread Godd
I would like to send generate a list of members and allow the user to send a mail to all the members. This is done using the users email client, so i would have to pass all the names to the mailto link that is generated. Is it possible to do so?? and if it is any suggestions on how I can get it

Re: [PHP] online site builder

2001-04-27 Thread Godd
Well I am working on just such a project now. Mine is a bit more complex than just the simple page. I am working on actually building a site that allows you to build a dynamic site. So you will be able to make tables in a database and use these tables to build query and tables and all sorts of thi

Re: [PHP] Databases and HTML forms

2001-04-20 Thread Godd
Just Kinda code it up -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Add data to three tables at once from one form

2001-04-20 Thread Godd
you have the idea. Just add the other sql statements and run it again. (Just multiply the script by 3) or you can use a loop to add the next sql to run eg. $sql1= "insert statement 1"; $sql2="insert statement 2"; $sql3= "insert statement 3"; for ($i=0; $i<3; $i++) { $qryno = '$sql' + $i $res

Re: [PHP] SOMEONE SHOOT ME!!!

2001-04-17 Thread Godd
Be very careful what you ask for -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Dynamic built web pages administration

2001-04-17 Thread Godd
This is not hard just long. I am working on just that now. I am building a site that allows my users to edit their site via the web and not requiring them to know HTML. What I am doing is using a template page and I am asking them for specific data for the various sections of the page, I then hav

Re: [PHP] FLASH AND PHP

2001-04-03 Thread Godd
ables will load within a certain > > time period. > > If they don't, the rest of your scripts will break. > > > > That, is how you can pass a lot of dynamic information into your > > flash file, > > without the use of server side generator install from macromedia. &

[PHP] FLASH AND PHP

2001-04-02 Thread Godd
Now VRML and PHP may be possible but if you can get Flash to get in the mix that will be so bad. What I really want to do is to get a flash file that will use the pictures that I send to it via php and let it use that picture to do the animation. Now what I am looking at is a flash file that dis

[PHP] VRML and PHP

2001-04-02 Thread Godd
I was wondering if it is possible for you to develop a VRML page that incorporates php to get the content that will be displayed?? I mean just the prospects of having a page the is "3D " and dynamic content based is quite interesting to me. -- PHP General Mailing List (http://www.php.net/

Re: [PHP] login without database

2001-03-30 Thread Godd
there is a header function that can set the document to no chache so that the browser will not cache it ""Jon Rosenberg"" <[EMAIL PROTECTED]> wrote in message 004301c0b934$d7ccb910$[EMAIL PROTECTED]">news:004301c0b934$d7ccb910$[EMAIL PROTECTED]... > you could use flat files, another words store

Re: [PHP] offline reader for php generated websites

2001-03-26 Thread Godd
one of the nice things of dynamically created sites is the ability to protect your site from people just using your code and potentially harming not just your site but others. The code that is used to the site sometimes have some very hesitive data and data manipulation routines that you don't wa

Re: [PHP] General question :)

2001-03-26 Thread Godd
Execution time!! Big files if not well developed = large exec time meaning server timeouts. small files = less timeouts and better debugging and modularity which ALWAYS better. Modularity allows you to plug in and pull out pages with out rendering you whole site unusable. Of course you can h