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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 2263 - 2292 of 9235   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2263
Dear All, How to store and retrieve image in mysql database.plz give example. Thnx in Advance Khan...
Muhammad Sohail Khan
soha_gg
Offline Send Email
Jun 2, 2005
6:29 am
2264
... From: "Muhammad Sohail Khan" <> To: <php-objects@yahoogroups.com> Sent: Thursday, June 02, 2005 6:28 AM Subject: [php-objects] How to store and retereive...
Mark Groen
markgroen@...
Send Email
Jun 2, 2005
1:44 pm
2265
In your Mysql database you can insert only the name of your image files as you know which directory are your images. You will use this name in your webpage. ...
Eric Kandja
erickandja
Offline Send Email
Jun 2, 2005
2:20 pm
2266
... From: "Eric Kandja" <> To: <php-objects@yahoogroups.com> Sent: Thursday, June 02, 2005 2:15 PM Subject: Re: [php-objects] How to store and retereive image...
Mark Groen
markgroen@...
Send Email
Jun 2, 2005
2:49 pm
2267
hi, I'm not good in this, but for me is not a good idea to retrive image from database. azan...
Azan
belacanmanis
Offline Send Email
Jun 2, 2005
4:06 pm
2268
AOA Do you really need to store Images in database? One easy approach is just to save the paths for images in table, then use these paths for retrieving and...
Abdul shahid khattak
ashahidkhattak
Offline Send Email
Jun 2, 2005
4:06 pm
2269
I'm totally agree with that... so... decide which way to go based on your project.....
Azan
belacanmanis
Offline Send Email
Jun 2, 2005
4:17 pm
2270
Hi Mark, Why don't just store the references (i.e. locations) to your images in mysql,..... As far as I know it is not very practical to really store the ...
Max van de Wiel
pruisian
Offline Send Email
Jun 2, 2005
4:24 pm
2271
here's a good book you can browse: it will tell you all about storing images. Build Your Own Database-Driven Website Using PHP & MySQLby Kevin Yank SitePoint...
Brahim Mouhamou
bmouham
Offline Send Email
Jun 2, 2005
4:25 pm
2272
So out of curiosity, when would any of you suggest storing image data in the database as opposed to image links? -jmb...
Jeff Bennett
JBennett@...
Send Email
Jun 2, 2005
4:28 pm
2273
... From: "Max van de Wiel" <> To: <php-objects@yahoogroups.com> Sent: Thursday, June 02, 2005 3:02 PM Subject: RE: [php-objects] How to store and retereive...
Mark Groen
markgroen@...
Send Email
Jun 2, 2005
10:10 pm
2274
Dear Shahid. If i want to store the path of image. then how it will be. can u send me the example of this. and then how to retrieve , need clear example ...
Soha Khan
soha_gg
Offline Send Email
Jun 3, 2005
4:46 am
2275
Dear Sir, Can u give me an example hot store the name and path of the image and then how to retrieve. Regards. Muhammad Sohail Khan Eric Kandja...
Soha Khan
soha_gg
Offline Send Email
Jun 3, 2005
4:51 am
2276
Hi Friends, I wanted to run a program made in php. The problem is that the program may require more than an hour to execute. So i wanted to execute the time...
abhishek jain
ejaincom
Online Now Send Email
Jun 3, 2005
6:18 pm
2277
Take a look at http://us3.php.net/manual/en/ref.info.php#ini.max-execution-time You can set this at runtime via ini_set ...
Derek Scruggs
derekscruggs
Offline Send Email
Jun 3, 2005
7:29 pm
2278
Hi (1) how can i implement directory traversing that is avoiding ...index.php?id=12BC (2) how can i hide PHP extentions? instead of ...index.php i would like...
Juma Lungo
jlungo
Offline Send Email
Jun 4, 2005
8:44 am
2279
... From: "Juma Lungo" <> To: <php-objects@yahoogroups.com> Sent: Saturday, June 04, 2005 8:44 AM Subject: [php-objects] Directory Traversing ... like to have...
Mark Groen
markgroen@...
Send Email
Jun 4, 2005
3:06 pm
2280
Juma, Assuming you are using Apache (which is appropriate for php even under windows) you will find a file called confg.ini under the apache directory...
Bob Burns
bnburns
Offline Send Email
Jun 4, 2005
3:38 pm
2281
... Heavy stuff. Depending on what you exactly need, maybe a .htaccess entry is sufficient: <Files index.tzp> ForceType application/x-httpd-php </Files> or ...
Martin Samesch
Papp_Nase
Offline Send Email
Jun 4, 2005
3:40 pm
2282
Well my fingers were a bit to fast for my slow brain. The file is httpd.conf instead. Bob ... From: php-objects@yahoogroups.com...
Bob Burns
bnburns
Offline Send Email
Jun 4, 2005
3:43 pm
2283
... Check this site: http://www.evolt.org/article/Making_clean_URLs_with_Apache_and_PHP/18/22880/ ... in an .htaccess file in the same folder or site root, you...
Ezequiel Gonzalez Rial
gonrial
Offline Send Email
Jun 4, 2005
3:48 pm
2284
No it has nothing to do with access control. A script with an extension of .tzp will either execute an application when pointed at or be sent to the browser...
Bob Burns
bnburns
Offline Send Email
Jun 4, 2005
3:54 pm
2285
hi , Thanks a lot and I would try to go throgh the file. Sorry for this delay but I was a busy with ISO certification process and then went for a weeks...
Harish Balakrishnan M...
hb_marar
Offline Send Email
Jun 4, 2005
3:56 pm
2286
... From: "Ezequiel Gonzalez Rial" <gonrial@...> To: <php-objects@yahoogroups.com> Sent: Saturday, June 04, 2005 3:47 PM Subject: Re: [php-objects]...
Mark Groen
markgroen@...
Send Email
Jun 4, 2005
6:02 pm
2287
Hello, Using void set_time_limit ( int seconds) will be better option. :) - Chaitanya. Derek Scruggs <derek@...> wrote: Take a look at ...
Chaitanya Jakhadi
chaitgsi
Offline Send Email
Jun 5, 2005
5:40 am
2288
Thanks all have understood now. Lungo Bob Burns <bnburns@...> wrote: Well my fingers were a bit to fast for my slow brain. The file is httpd.conf...
Juma Lungo
jlungo
Offline Send Email
Jun 5, 2005
11:27 am
2289
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 5, 2005
2:46 pm
2290
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 5, 2005
2:46 pm
2291
It would be good to remember that the set_time_limit(seconds) function also resets the timer to zero. So if you put it in a loop you keep the task alive as...
Bob Burns
bnburns
Offline Send Email
Jun 5, 2005
8:11 pm
2292
Hi Everybody! I have class(say Z) that have different function. The functions are different in just there parameter list or you can say type(though i know php...
Abdul shahid khattak
ashahidkhattak
Offline Send Email
Jun 6, 2005
5:19 am
Messages 2263 - 2292 of 9235   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