Re: [PHP] Multiple cookies on the same computer

2009-03-26 Thread dg
On Mar 26, 2009, at 7:14 PM, Ken Watkins wrote: To keep up with their identities, I created a script for each family member to run (dad.php, mom.php, etc.), and it sets a cookie on each computer and uses sessions so I know who is connecting. Each family member only uses her/his own page?

Re: [PHP] Having trouble with a form to mail script.

2009-03-22 Thread dg
On Mar 22, 2009, at 12:46 PM, Linda Stark wrote: what you guys thought about the PHPMailer-FE from http://phpmailer.codeworxtech.com/index.php?pg=phpmailerfe I'm not familiar with this. You might want to check with your web provider. I'm with Pair and they make security recommendations for

Re: [PHP] ruby / rails within a php site

2009-03-03 Thread dg
If it's html that Ruby generates, you could probably call that file as an include? Something like... $ruby = file_get_contents('rubyfile.html'); then where ever in the document you want that content use: On Mar 3, 2009, at 9:56 PM, ravi Ruddarraju wrote: I have a regular php site. I also h

Re: [PHP] piecing together basic knowledge of paypal nvp api & PHP - to work together

2008-12-01 Thread dg
On Dec 1, 2008, at 5:50 PM, Govinda wrote: I am successfully using the sample scripts paypal provides, but moving towards our own solution, You might have better luck with custom solutions for Paypal at: http://www.paypaldeveloper.com/pdn/ -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] is there a problem with php script pulling HTML out of database as it writes the page??

2008-07-15 Thread dg
It would be helpful if you could clarify the error you are getting, but could be something involving quotes, stripslashes() and addslashes(); On Jul 15, 2008, at 2:36 PM, Rod Clay wrote: Hello. Again, I'm fairly new to php so please forgive me if my question is a very simple or obvious o

Re: [PHP] is there a problem with php script pulling HTML out of database as it writes the page??

2008-07-15 Thread dg
On Jul 15, 2008, at 3:06 PM, Rod Clay wrote: All of the text is being correctly retrieved from the database and written to the page, including the statement, because I see it all in the page source of the page in my browser. However, the statement is NOT working, that is, the image do

Re: [PHP] string comparison

2008-07-13 Thread dg
On Jul 13, 2008, at 9:17 AM, Sudhakar wrote: hi i am writing a small application where a user enters a phrase in the textfield and i would like to display all the files present in the root directory which consists of the keyword or keywords entered by the user. i have used a few comparis

Re: [PHP] Re: What font/size do you use for programming?

2008-07-10 Thread dg
zoom in on them without seeing them there? -dg -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: What font/size do you use for programming?

2008-07-10 Thread dg
light grey is the only alteration I've ever made from BBedit's default settings. -dg -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] include_path, permissions question

2008-07-10 Thread dg
191739/191739 in /**/local/ home/**/dev.**.net/alb**acl.php on line 11 Thanks in advance for any assistance. -dg

Re: [PHP] how can make like http://wallpaper.pc86.com ?

2008-02-02 Thread dg
Looks like Treeview http://developer.yahoo.com/yui/treeview/ On Feb 2, 2008, at 1:33 PM, RandMan wrote: how can make like http://wallpaper.pc86.com ? look like XP file manager, any body have idea ? i feel this so simple, but i have't any direction thank you ! -- PHP General Mailing List (h

[PHP] Digital Downloads and Scale

2008-01-20 Thread dg
d database queries. Not quite sure where to start in researching this - any ideas or keywords would be appreciated. Thanks, -dg -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] looping through a $_POST variable

2007-12-30 Thread dg
You might want to check the loop alone and check each value of $value: $array = explode(' ', $_POST['emails']); foreach($array as $value) { print "'$value'"; } if it works that way, at least you narrow down the possibilities of weirdness. On Dec 30, 2007, at 5:34 PM, Richard Kurth wr