Search the web
Sign In
New User? Sign Up
php-objects · Discussions about Object Oriented Programming in PHP
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3944 - 3973 of 9227   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3944
Do you have go-pear.bat anywhere on your PC? _____ From: php-objects@yahoogroups.com [mailto:php-objects@yahoogroups.com] On Behalf Of Abdul Shahid Khattak ...
Atkinson, Robert
ratkinsonuk
Offline Send Email
Jun 1, 2006
7:30 am
3945
yeah he's right. if you don't have you that file, you need to download the PHP version from Php.net get the download all. Find the one with the...
Adrianyong
h_tere2000
Offline Send Email
Jun 1, 2006
8:44 am
3946
Hi Friends, We are integrating paypal pro with our site. We now have the amount in the paypal account. Some amount has to be transferred to another paypal ...
nagendra prasad
justnagendra82
Offline Send Email
Jun 1, 2006
5:26 pm
3947
Hi, Just download the pear package which you want from www.pear.php.net and copy the extracted files to your include path. For eg. if you want to use ...
S.SIVA MANI
sivamaniooty
Offline Send Email
Jun 1, 2006
5:26 pm
3948
I use this function everytime im going to save any data in a sql sentence: function q($s,$string=false) { $s = mysql_real_escape_string($s); # Adds quotes if...
Andres Santos
andufo1982
Offline Send Email
Jun 2, 2006
6:10 pm
3949
Dear Dr. Biyi Thanks for giving your valuable time. As passward protected directory is OK for individual user. I want IP authentication program in my html web...
tanujfma
Offline Send Email
Jun 3, 2006
12:50 pm
3950
Hello, This is just a reminder to let you know that the following polls are going on the php-objects mailing list that you are a subscriber. Please do not...
php-objects@yahoogrou...
Send Email
Jun 4, 2006
11:51 pm
3951
Hello, This is just a reminder messages to let you know as subscriber of the php-objects mailing list you may be interested about the new site where you may...
php-objects@yahoogrou...
Send Email
Jun 4, 2006
11:51 pm
3952
Hi, Im trying to get the $sql variable value from hello() in a() function hello() { $sql = 'select * from table'; } class ABC { function a() { // How can I...
Andres Santos
andufo1982
Offline Send Email
Jun 5, 2006
12:03 am
3953
Do you mean this? function hello() { $sql = 'select * from table'; return($sql); // return the variable to make it available outside the function } class ABC {...
Jeff Bennett
JBennett@...
Send Email
Jun 5, 2006
2:02 am
3954
Hi All, I have made a few webpages in HTML and now I was trying to convert them into PHP pages but for some reason it will give me the error that the page...
Devi Lal Dashora
dldashora
Offline Send Email
Jun 5, 2006
2:17 am
3955
Jeje.. no. Thats obvius. The problem is hello() doesnt quite return ANYTHING (i cannot modify that function because its already linked with dozens of other...
Andres Santos
andufo1982
Offline Send Email
Jun 5, 2006
2:21 am
3956
... only if: function hello() { global $sql; $sql = 'select * from table'; } or function hello() { global $MySpecialSQLInstructionForAnyStrangePurpose; $sql =...
José Miguel Santib...
jms1609
Offline Send Email
Jun 5, 2006
3:28 am
3957
Hello. This is possible when the hello() function returns $sql, like this: function hello() { $sql = 'select * from table'; return $sql; } This code makes the...
Cigano Sparrow
ciganogypsy
Offline Send Email
Jun 5, 2006
5:07 am
3958
What HTTP server are you using? If it is IIS, then you need to add PHP as document type and add the PHP executable. Rob. _____ From:...
Atkinson, Robert
ratkinsonuk
Offline Send Email
Jun 5, 2006
10:58 am
3959
Btw if you are using a web hosting to display php. Make sure your webhost supports Cgi-bin script or php scripts. "Akinson, Robert" <ratkinson@...>...
Adrianyong
h_tere2000
Offline Send Email
Jun 5, 2006
11:51 am
3960
Hi. I have a /download directory for my website. I dont want the files to get downloaded just by typing http://www.foo.com/download/some_file.doc because its...
Andres Santos
andufo1982
Offline Send Email
Jun 5, 2006
8:59 pm
3961
put the following in an .htaccess file in the download directory: RewriteEngine on RewriteRule ^(.*)$ /get.php?file=download/$1 And then something like this in...
Jeff Bennett
JBennett@...
Send Email
Jun 5, 2006
11:59 pm
3962
Thanks Jeff, all i was looking for was the RewriteEngine on RewriteRule ^(.*)$ /get.php?file=download/$1 which i mutated to RewriteEngine on RewriteRule...
Andres Santos
andufo1982
Offline Send Email
Jun 6, 2006
12:11 am
3963
I'm pretty sure you'll want to keep the $1 part of the rewrite rule, that's what is going to send the querystring to the new request for index.php. Are you...
Jeff Bennett
JBennett@...
Send Email
Jun 6, 2006
1:05 am
3964
hi jeff, the thing is, i dont want the download to be accesible from: www.foo.com/downloads/file.zip I should only be available from: ...
Andres Santos
andufo1982
Offline Send Email
Jun 6, 2006
1:23 am
3965
Ah I think I see what you are trying to do by removing the $1. You are tying to trap any direct access to the downloads directory? My example turns...
Jeff Bennett
JBennett@...
Send Email
Jun 6, 2006
1:48 am
3966
... a very easy way is put that dir, out of rootdir for website... if you are in /some_path/web for website files, you can create: /some_path/download for your...
José Miguel Santib...
jms1609
Offline Send Email
Jun 6, 2006
1:53 am
3967
Jose, actually i thought about that option, but im working on a restricted hosting plan and i cant access any other directory other than the webroot hehe ... ...
Andres Santos
andufo1982
Offline Send Email
Jun 6, 2006
2:05 am
3968
Hello Friends Can we upload a video file of 100 MB using PHP on linux server? What coud be the consequences of uploading such a big file? Or do i need to use...
imran rahi
imranforphp
Offline Send Email
Jun 6, 2006
8:50 am
3969
How do I do this? I have minutes: $minutes_online = intval((time() - strtotime($data[$i]['dLastLogon']))/60); Ex: $minutes_online = 8758; How do I show this in...
Francisco - São P...
avs1001
Offline Send Email
Jun 6, 2006
3:02 pm
3970
It's quite simple. If you have only the minutes online you won't be able to point out the seconds, only hours and minutes. Said so, all you have to do is those...
Leandro Nascimento Ca...
leandroico
Offline Send Email
Jun 6, 2006
6:39 pm
3971
Great, thanks ... -- /*----------------------------*/ When you have a hammer Everything looks like a nail. /*----------------------------*/...
Francisco - São P...
avs1001
Offline Send Email
Jun 6, 2006
7:17 pm
3972
... Maybe if you has acccess to config files, you can change it to accept those files... Then you must check if your browser can handle this files... But http...
José Miguel Santib...
jms1609
Offline Send Email
Jun 6, 2006
8:13 pm
3973
jose suggestion is good. put out of the public_html then read from it when supplying an id. actually you do not need the file name hash. if you are working...
DF Yeah
df_yeah
Offline Send Email
Jun 7, 2006
1:21 am
Messages 3944 - 3973 of 9227   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help