![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi All, I have a web site I am developing, and have a question. I would like members to be able to upload pictures. Do you think they should be saved as individual files or should they be put in an MySQL database? Which would you recommend, and do you have any sample code for accomplishing this? |
#3
| |||
| |||
|
|
C.Joseph Drayton said the following on 5/5/2006 9:25 AM: Hi All, I have a web site I am developing, and have a question. I would like members to be able to upload pictures. Do you think they should be saved as individual files or should they be put in an MySQL database? Which would you recommend, and do you have any sample code for accomplishing this? Whatever the answer, it has nothing to do with Javascript. |
#4
| |||
| |||
|
|
C.Joseph Drayton said the following on 5/5/2006 9:25 AM: Hi All, I have a web site I am developing, and have a question. I would like members to be able to upload pictures. Do you think they should be saved as individual files or should they be put in an MySQL database? Which would you recommend, and do you have any sample code for accomplishing this? Whatever the answer, it has nothing to do with Javascript. Actually it does Randy, I suspect that however I choose to get those |
#5
| |||
| |||
|
|
Randy Webb wrote: C.Joseph Drayton said the following on 5/5/2006 9:25 AM: Hi All, I have a web site I am developing, and have a question. I would like members to be able to upload pictures. Do you think they should be saved as individual files or should they be put in an MySQL database? Which would you recommend, and do you have any sample code for accomplishing this? Whatever the answer, it has nothing to do with Javascript. Actually it does Randy, |
|
I suspect that however I choose to get those pictures, I will use a combination of JavaScript and PHP to manipulate the pictures. |
|
Right now I use a combination of JavaScript and PHP to handle the existing databases so it would seem the same will be the case for picture storage. |
#6
| |||
| |||
|
|
Randy Webb wrote on 05 mei 2006 in comp.lang.javascript: C.Joseph Drayton said the following on 5/5/2006 9:25 AM: Hi All, I have a web site I am developing, and have a question. I would like members to be able to upload pictures. Do you think they should be saved as individual files or should they be put in an MySQL database? Which would you recommend, and do you have any sample code for accomplishing this? Whatever the answer, it has nothing to do with Javascript. Unless you are using ASP-Jscript. |

#7
| |||
| |||
|
|
pedant ASP uses JScript, not Javascript, which I specified ![]() /pedant |
|
But it still has nothing to do with c.l.j and client side scripting. |
#8
| |||
| |||
|
|
C.Joseph Drayton said the following on 5/5/2006 10:09 AM: Randy Webb wrote: C.Joseph Drayton said the following on 5/5/2006 9:25 AM: Hi All, I have a web site I am developing, and have a question. I would like members to be able to upload pictures. Do you think they should be saved as individual files or should they be put in an MySQL database? Which would you recommend, and do you have any sample code for accomplishing this? Whatever the answer, it has nothing to do with Javascript. Actually it does Randy, Actually, it doesn't Joseph. There are two parts to what you are doing. The What and the How. The How would be PHP and JS, the What would be saving images, and saving images on the server - whether as individual files or in a MySQL database - has nothing to do with client side Javascript. If anything, its a PHP/MySQL question and that would be more on how to accomplish it instead of what you are trying to accomplish. I suspect that however I choose to get those pictures, I will use a combination of JavaScript and PHP to manipulate the pictures. And that is fine, but whether to save them in a Database (which is an odd sounding request) or in a file has nothing to do with JS. |
|
Right now I use a combination of JavaScript and PHP to handle the existing databases so it would seem the same will be the case for picture storage. Your Javascript doesn't handle the databases, PHP does. JS on the client may tell PHP to do it but it is PHP doing the work on the server. |
#9
| |||||
| |||||
|
|
Randy Webb wrote: C.Joseph Drayton said the following on 5/5/2006 10:09 AM: |
|
I suspect that however I choose to get those pictures, I will use a combination of JavaScript and PHP to manipulate the pictures. And that is fine, but whether to save them in a Database (which is an odd sounding request) or in a file has nothing to do with JS. Actually it is not really an odd question. |
|
I am use to using Clarion for web based databases, and I can save them as a blob and have a template that converts the JPG to/from blob. |
|
This is my first time working on a web site where I didn't use Clarion for the database, and I am finding that I have to use JavaScript to talk to PHP. I was simply trying to find out which would be easier. |
|
I was given a PHP script to handle the actual file saving, now I need to figure out how to access the script via JavaScript. |
#10
| |||
| |||
|
|
C.Joseph Drayton said the following on 5/5/2006 1:34 PM: Randy Webb wrote: C.Joseph Drayton said the following on 5/5/2006 10:09 AM: snip I suspect that however I choose to get those pictures, I will use a combination of JavaScript and PHP to manipulate the pictures. And that is fine, but whether to save them in a Database (which is an odd sounding request) or in a file has nothing to do with JS. Actually it is not really an odd question. OK, for me it was. I have always saved them as files and been done with it. I am use to using Clarion for web based databases, and I can save them as a blob and have a template that converts the JPG to/from blob. OK. This is my first time working on a web site where I didn't use Clarion for the database, and I am finding that I have to use JavaScript to talk to PHP. I was simply trying to find out which would be easier. It would be easier and more efficient to simply save the image files. I was given a PHP script to handle the actual file saving, now I need to figure out how to access the script via JavaScript. form action="saveImageFiles.php" .... input type="file" input type="submit" value="Upload files" /form Then the file gets submitted to the server, no JS needed. Thanks Randy, |
![]() |
| Thread Tools | |
| Display Modes | |
| |