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
Search found 128 matches
- Tue Jun 12, 2007 5:29 am
- Forum: PHP - Code
- Topic: Uploading Files
- Replies: 4
- Views: 879
- Tue Jun 12, 2007 5:01 am
- Forum: PHP - Code
- Topic: Uploading Files
- Replies: 4
- Views: 879
- 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);- 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
http://www.reconn.us/content/view/36/45/
http://www.codebeach.com/tutorials/disa ... script.asp
- Wed Feb 28, 2007 6:38 am
- Forum: PHP - Code
- Topic: array key exists problem with a loop
- Replies: 1
- Views: 528
- Fri Feb 23, 2007 1:15 am
- Forum: PHP - Code
- Topic: how can i use php from command line ? step
- Replies: 25
- Views: 2946
- Fri Feb 23, 2007 1:07 am
- Forum: PHP - Code
- Topic: Upload movies and pictures from mobile phones
- Replies: 6
- Views: 1254
- Thu Feb 22, 2007 4:55 am
- Forum: PHP - Code
- Topic: Upload movies and pictures from mobile phones
- Replies: 6
- Views: 1254
- 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...
- Tue Feb 20, 2007 3:21 am
- Forum: PHP - Code
- Topic: PHP PDF XML
- Replies: 8
- Views: 2015
- Tue Feb 20, 2007 2:54 am
- Forum: PHP - Code
- Topic: PHP PDF XML
- Replies: 8
- Views: 2015
- Tue Feb 20, 2007 2:43 am
- Forum: PHP - Code
- Topic: PHP PDF XML
- Replies: 8
- Views: 2015
- 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...
- 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:
for the Newest first:
hope it helps
for the oldest first:
Code: Select all
ORDER BY the_date_collumn DESCCode: Select all
ORDER BY the_date_collumn ASC- Fri Feb 16, 2007 1:30 am
- Forum: PHP - Code
- Topic: Identifying text vs. binary files
- Replies: 7
- Views: 1252
use the function to get the extension of the file
but this is a very insecure way to do this
Code: Select all
explode()but this is a very insecure way to do this