Re: [PHP] Dynamic built web pages administration
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 have options like inserting a pic and stuff like that. Mind you it is not all that hard but it is dam long to as I requires me to take just about any and all possible situations into consideration so I have to be very careful when building my php pages to handle that. Pluse taking into account almost every tag and its attributes is hard but I am doing it via a database so once in I don't have to worry about referencing it again. Good luck thought with yours. What I think you have to keep in mind is what you want them to be able to do, I mean if they are going to develop a good html page from your site then hey, given them a link to macromedia dreamweaver and let them do that there and let them upload the page to the directory. You will not be able to do on the web what these professional web design tools allow you to at your computer (at least not a easily ). If you can think of the options that you would like them to be able to do and then develop solutions for that then you will find that you are in a much better position to deliver what you want. and then you can always add to that cause you will have the database there with all the building blocks ( build now so that you can add easily later) Good luck -- 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] SOMEONE SHOOT ME!!!
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] Add data to three tables at once from one form
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 $result = mysql_db_query($dbname, $qryno); } try that or something alongs that line should work. of course you can always refer to teh help files. > > How do I set up the insert statement? > >$query = "INSERT INTO $table VALUES ('$menu_id', '$server', > '$menunumber', '$menuname')"; > > $result = mysql_db_query($dbname, $query); > > action=""> > > Anyting special I have to do with the form submit? > > > > > -- > 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] > -- 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] Databases and HTML forms
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] online site builder
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 things that will create the site. The hard part for me right now is adding all the tags so that they can format the page and insert images and all that stuff. but it is coming along. I started to build this because I have not found any tool out there that does that as yet. ""kaab kaoutar"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi all! > Is using php the right technology with which i can create an online site > builder! i mean i want to enable users to create their own sites > in few minutes by choosing one model of the ones proposed, the colors, etc u > know like these site builders sites? > if not do u thnik there are specific tools i may use to fullfill these? or i > have to do it from scrach using jsp or java ? > Thanks a lot > > _ > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. > > > -- > 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] > -- 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] General question :)
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 have a few big files and some small files with it, depends on what the big files do, Classes and common functions can be grouped together. ""FredrikAT"" <[EMAIL PROTECTED]> wrote in message 99o8pm$480$[EMAIL PROTECTED]">news:99o8pm$480$[EMAIL PROTECTED]... > Hi! > > What do you think is best..: > - have alot of small .php (files)? > - or a few big? > > What's good & bad with these solutions?! > > - > Fredrik A. Takle > Bergen, Norway > [EMAIL PROTECTED] > > > > > -- > 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] > -- 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] offline reader for php generated websites
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 want getting out. ""Andre"" <[EMAIL PROTECTED]> wrote in message 99o1u7$9ep$[EMAIL PROTECTED]">news:99o1u7$9ep$[EMAIL PROTECTED]... > Hello List, > knows anybody an offline reader which can download not only static websites > but also dynamic websites especially dynamic generated links? > Like websites which are only generated over one file over variables like > > "dynamic.php?siteID=3001" > > Thanks Andre! > > > > > > > > -- > 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] > -- 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] login without database
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 the user information in a text > file like below: > username|pass|email > bob|fgffsdg|[EMAIL PROTECTED] > foo|bar|[EMAIL PROTECTED] > > > and then just read and write the file with PHP. > > Jon > > > - Original Message - > From: "Jan Grafström" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Friday, March 30, 2001 11:15 AM > Subject: [PHP] login without database > > > > Hi! > > Can I use php to make a login system for users? I don´t have a databas > > on my server. I only want to have a few users. When I send variables to > > php the string is always cached by IE5.5 and it´s very easy to se the > > username and password if you look i cache. Is there a way to get this > > done only on the server? > > > > > > -- > > 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] > > > > > -- > 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] > -- 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]
[PHP] VRML and PHP
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/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] FLASH AND PHP
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 displays info on a product. now given the picture of the product and the information on the product, I want flash to use that info with the events that I will place in the flash file and let it do its thing. now that will be good. I am not sure what macromedia has along this line. -- 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] FLASH AND PHP
EXPLAIN !! I am not an XML expert Please explain. I have only now begun to read up on XML ""Richard Kirk"" <[EMAIL PROTECTED]> wrote in message 000d01c0bc55$6db38ee0$720a@proj00014">news:000d01c0bc55$6db38ee0$720a@proj00014... > Or alternatively use the xml object to send an xml (flash 5) document to php > which then waits for an xml response. > > Cheers > > > -Original Message- > > From: Lindsay Adams [mailto:[EMAIL PROTECTED]] > > Sent: Monday, April 02, 2001 10:00 PM > > To: PHP > > Subject: Re: [PHP] FLASH AND PHP > > > > > > If you are wanting to use pregenerated FLASH scripts ( and not > > build them on > > the fly with libswf or ming) then what you want to do, without > > having to buy > > Generator for your server is... > > > > In the beginning of you falsh file, do a load variables from a PHP page, > > that queries a database or whatever, gets the data, and echoes it > > out to the > > FLASH file in the format expected by load variables. Tack on a variable at > > the end called loadDone and set it to 1 (or true) > > In flash, you have to put in a loop in the second frame, or after the > > loadvariables command, that checks to see if loadDone==1, to make > > sure that > > all the variables have loaded. > > > > You cannot assume that the variables 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. > > > > > > > > On 4/2/01 11:14 AM, "Godd" <[EMAIL PROTECTED]> wrote: > > > > > 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 displays info on > > a product. > > > now given the picture of the product and the information on the > > product, I > > > want flash to use that info with the events that I will place > > in the flash > > > file and let it do its thing. > > > > > > now that will be good. I am not sure what macromedia has along > > this line. > > > > > > > > > > > > -- > > 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] > > > > > > > -- > 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] > -- 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]
[PHP] Outlook Express and Miltiple send to Addresses
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 done?? -- 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]