Search found 128 matches

by ryuuka
Tue Jun 12, 2007 5:29 am
Forum: PHP - Code
Topic: Uploading Files
Replies: 4
Views: 879

well start at these places:

http://www.tutorialized.com
http://www.phpfreaks.com

it's very unlikely people will help you if you haven't done anything in terms of attempting to
crack this problem first. try the file manipulation and the form handeling parts of tutorialized
these help a lot
by ryuuka
Tue Jun 12, 2007 5:01 am
Forum: PHP - Code
Topic: Uploading Files
Replies: 4
Views: 879

what have you got so far in terms of code?
by ryuuka
Mon Apr 02, 2007 7:11 am
Forum: Installation and Configuration
Topic: Trying to view errors in PHP 5.2.1
Replies: 8
Views: 1770

put this on top of your site just below the php opening

Code: Select all

<?php
  error_reporting(E_ALL); 
  ini_set('display_errors', TRUE);
by ryuuka
Wed Mar 28, 2007 2:39 am
Forum: PHP - Code
Topic: How to Protect the PDF file?
Replies: 4
Views: 759

why not just use javascript to disallow people to use the right click function?

http://www.reconn.us/content/view/36/45/

http://www.codebeach.com/tutorials/disa ... script.asp
by ryuuka
Wed Feb 28, 2007 6:38 am
Forum: PHP - Code
Topic: array key exists problem with a loop
Replies: 1
Views: 528

i'm guessing that $key or $value or $lines isn't an array and that one of these needs to be an array
by ryuuka
Fri Feb 23, 2007 1:15 am
Forum: PHP - Code
Topic: how can i use php from command line ? step
Replies: 25
Views: 2946

working with php in the command line essentially works like this:

C:\php\php.exe D:\scripts\php-script\thingy.php

first you you give the path to the php executable and then you give the path to the php script.

that's how i do it at least
by ryuuka
Fri Feb 23, 2007 1:07 am
Forum: PHP - Code
Topic: Upload movies and pictures from mobile phones
Replies: 6
Views: 1254

yes it can.

What you do is you send the movie or image via text message ( or mms ) to your server. Have your server parse the email and save the file
ah i see
sorry for the false information ZKW
by ryuuka
Thu Feb 22, 2007 4:55 am
Forum: PHP - Code
Topic: Upload movies and pictures from mobile phones
Replies: 6
Views: 1254

can't be done with php i think you will need drivers etc

and you don't have that with php
by ryuuka
Tue Feb 20, 2007 3:35 am
Forum: PHP - Code
Topic: PHP PDF XML
Replies: 8
Views: 2015

nm i already know why it won't convert right i scanned all these documents as pdf file. normally it would oautomaticly convert all these filesto a pdf with text but because i wanted to get it done quickly i dragged them from the map it got into, into the corrosponding folder instead of waiting a few...
by ryuuka
Tue Feb 20, 2007 3:21 am
Forum: PHP - Code
Topic: PHP PDF XML
Replies: 8
Views: 2015

<?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE pdf2xml SYSTEM "pdf2xml.dtd"> <pdf2xml> <page number="1" position="absolute" top="0" left="0" height="1262" width="892"> </page> </pdf2xml> i don't know ho...
by ryuuka
Tue Feb 20, 2007 2:54 am
Forum: PHP - Code
Topic: PHP PDF XML
Replies: 8
Views: 2015

it's not what i'm looking for because it out puts every page
into a picture format. that i don't need because later on once i
get this done i want to input the data from the pdf files into a database
by ryuuka
Tue Feb 20, 2007 2:43 am
Forum: PHP - Code
Topic: PHP PDF XML
Replies: 8
Views: 2015

no this is a command line program and since i want to do large batches like 200
it wouldn't be practical.
what about word docs?

irecently found something on our company networks that converts large batches of
pdf to doc files. so maybe it would be easier with doc files?
by ryuuka
Tue Feb 20, 2007 2:29 am
Forum: PHP - Code
Topic: PHP PDF XML
Replies: 8
Views: 2015

PHP PDF XML

few question concerning this: 1. can i use php to convert pdf files to XML? 2. If so what do i use to do that? 3. Can you give me some pointers as to where i should look? 4. can it be done with word 5. If so what do i use to do that? 6. Can you give me some pointers as to where i should look? hope y...
by ryuuka
Mon Feb 19, 2007 3:27 am
Forum: PHP - Code
Topic: Sort folders by date
Replies: 1
Views: 560

in the query that you use for getting the images type in an extra command

for the oldest first:

Code: Select all

ORDER BY the_date_collumn DESC
for the Newest first:

Code: Select all

ORDER BY the_date_collumn ASC
hope it helps
by ryuuka
Fri Feb 16, 2007 1:30 am
Forum: PHP - Code
Topic: Identifying text vs. binary files
Replies: 7
Views: 1252

use the

Code: Select all

explode()
function to get the extension of the file

but this is a very insecure way to do this