Search found 486 matches

Actual Results

Post Posted: June 12th, 2006, 12:50 am

If anyone still does need to figure out this problem, well here is the answer.

In order to get flash support in the getimagesize() function you need to have the flag

--with-zlib

included in your PHP build. YOU DO NOT need the SWF library (libswf) included...

Post Posted: June 12th, 2006, 12:45 am

you should avoid using backticks in your queries. Its only useful if you ever come across a table that has a space within it. Backticks in general are a caveat because when used by themselves (or with the eval function) they act as a system call...

Post Posted: June 12th, 2006, 12:41 am

As laim as that reply may sound, its probilly best for you to get a FileManager program which basically acts as a web based FTP. You can manage files, and directories. Some FileManager programs are even suited towards user accounts that are provided by the operating system...

Post Posted: June 12th, 2006, 12:38 am

Does anyone know how EXIF headers in JPEG images work?

Post Posted: June 12th, 2006, 12:36 am

I am sure you can find a free program that does it for you, I used to use superJPEG to do that. But you CAN do it with php, but it wont be as stable. You are using it on a windows pc with a development server, so it would be a waste.

My best advice is for you to craft something in VB or C#.

Post Posted: June 12th, 2006, 12:34 am

For Permissions... In a linux operating system (which is pretty much the OS that you are using) directories and files use a permission system. Certain files may only have permissions that allow the OWNER, GROUP, or ANYONE to access it. The permissions are translated into a three digit octal represen...

Post Posted: June 12th, 2006, 12:29 am

Two functions that I think are pretty cool...

list() and array_map()


http://ca.php.net/list
http://ca.php.net/array_map

Post Posted: June 12th, 2006, 12:25 am

Same thing applies for a while() loop.

Also if you want an ifinite loop you can do two of the following...

PHP Code: [ Download ] [ Select ]
 
 
 
while(true) {
 
 
 
}
 
 
 
for( ;; ) {
 
 
 
}
 
 
 
 
  1.  
  2.  
  3.  
  4. while(true) {
  5.  
  6.  
  7.  
  8. }
  9.  
  10.  
  11.  
  12. for( ;; ) {
  13.  
  14.  
  15.  
  16. }
  17.  
  18.  
  19.  
  20.  


just be sure to have a break; somewhere inside the two, or your server will start pressing charges...

Post Posted: June 12th, 2006, 12:22 am

I believe I asked that same question when I was about a half a year younger...

http://www.ozzu.com/ftopic55077.html&highlight=

Post Posted: May 28th, 2006, 2:42 pm

I was just wondering it is possible to add and remove scheduled tasks in DOS. I know that the AT command works just fine for DOS. Unix has the same idea for the AT command but it also has perminent tasks that are called CRON jobs. You can add and remove CRON jobs in unix simply by BASH. So I was won...

Post Posted: May 23rd, 2006, 8:29 pm

Does nayone know how to execute a for loop command in DOS?

Is there any way to make it act as if it was that of a while loop...

for example

while(true) //runs an infinite loop

can you do that with MSDOS?

Post Posted: May 18th, 2006, 11:45 pm

I am not entirely sure what batch files are, but my assumption is that they are the equivalent of that of unix sh scripts. So basically to sum it up, a batch file is a set of DOS instructions that are performed one after another in a command prompt style interface.... Once all the commands are execu...

Post Posted: May 18th, 2006, 11:24 pm

is it possible to access an object property dynamically. Say you have an object called box and a property value of that object called text... box.text; Now you want to access that text value, but not the traditional hard coded way... string a = "text"; box[a] = "this is the text of th...

Post Posted: April 19th, 2006, 12:17 am

Well what you got to think about is orginization here. If you save your files within a database using a BLOD datatype then you will have a nice portable and orginized way of storing your files. Although like you said, it WILL cause more overhead when it has to be extracted from the database. Then yo...

Post Posted: April 15th, 2006, 11:40 pm

Using the exif functions in php you can read the exif hearers/comments that are embeded within an image or media type. The header comments are then fetched as an array from the image. Does anyone know how to add exif headers in images using PHP? I found two libraries that can do this: PEL and PHP JP...
  • Sort by
 
 

© Unmelted Enterprises 1998-2009. Driven by phpBB © 2001-2009 phpBB Group.