|
Sponsors.
|  | | | PHP Discussion related to PHP web development, PHP coding. Tutorials, source code, tips and tricks related to PHP programming. |  | 
November 11th, 2008, 08:44 AM
| | Jr. Member
Join Date: Dec 2006
Posts: 163
BRL$: 378.76 Thanks: 1
Thanked 2 Times in 2 Posts
Rep Power: 67 | | Looking for Ajax Uploading script ? Hello,
Any one has used any good Ajax Uploading script with php. Can you suggestion any one... | |
__________________ Web Developer
( To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. ) █ Jobs In !!! - Post Jobs, Hire Employees, Create Blogs and
Earn Money. | | | | 
November 11th, 2008, 09:22 AM
| | Senior Member
Join Date: Aug 2008 Location: India
Posts: 2,418
BRL$: 202.78 Thanks: 23
Thanked 74 Times in 74 Posts
Rep Power: 251 | | Re: Looking for Ajax Uploading script ? Here is one I found through google. To view links or images in this forum your post count must be 1 or greater. You currently have 0 posts.
Have a look at google's list, you will find many. To view links or images in this forum your post count must be 1 or greater. You currently have 0 posts. |
__________________ Best PayPal PTC Sites - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
Hit the Thanks Button If you Find My Post Useful... To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
█ Jobs In !!! - Post Jobs, Hire Employees, Create Blogs and
Earn Money. | | | | 
November 11th, 2008, 09:47 AM
| | Jr. Member
Join Date: Dec 2006
Posts: 163
BRL$: 378.76 Thanks: 1
Thanked 2 Times in 2 Posts
Rep Power: 67 | | Re: Looking for Ajax Uploading script ? smartzkool
The link you have give uses CGI . It is not uses php coding. I looking for PHP script | |
__________________ Web Developer
( To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. ) █ Jobs In !!! - Post Jobs, Hire Employees, Create Blogs and
Earn Money. | | | | 
November 11th, 2008, 11:02 AM
| | Senior Member
Join Date: Aug 2008 Location: India
Posts: 2,418
BRL$: 202.78 Thanks: 23
Thanked 74 Times in 74 Posts
Rep Power: 251 | | Re: Looking for Ajax Uploading script ? Quote: | smartzkool
The link you have give uses CGI . It is not uses php coding. I looking for PHP script | Well they are using PHP, look at this line in their description - Currently, only support for PHP is available. |
__________________ Best PayPal PTC Sites - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
Hit the Thanks Button If you Find My Post Useful... To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
█ Jobs In !!! - Post Jobs, Hire Employees, Create Blogs and
Earn Money. | | | | 
November 12th, 2008, 01:18 AM
| | Jr. Member
Join Date: Dec 2006
Posts: 163
BRL$: 378.76 Thanks: 1
Thanked 2 Times in 2 Posts
Rep Power: 67 | | Re: Looking for Ajax Uploading script ? Quote: | Well they are using PHP, look at this line in their description - Currently, only support for PHP is available. | They are internally using upload.cgi to upload the files that why have said that The link you have give uses CGI . | |
__________________ Web Developer
( To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. ) █ Jobs In !!! - Post Jobs, Hire Employees, Create Blogs and
Earn Money. | | | | 
November 12th, 2008, 07:51 AM
| | Senior Member
Join Date: Aug 2008 Location: India
Posts: 2,418
BRL$: 202.78 Thanks: 23
Thanked 74 Times in 74 Posts
Rep Power: 251 | | Re: Looking for Ajax Uploading script ? Quote: | They are internally using upload.cgi to upload the files that why have said that The link you have give uses CGI . | Well maybe, I didnot went in the in depth details of the site, just read the thing and posted it for you. Better luck next time. To view links or images in this forum your post count must be 1 or greater. You currently have 0 posts. |
__________________ Best PayPal PTC Sites - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
Hit the Thanks Button If you Find My Post Useful... To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
█ Jobs In !!! - Post Jobs, Hire Employees, Create Blogs and
Earn Money. | | | | 
December 17th, 2008, 08:33 AM
| | New Foot Prints
Join Date: Dec 2008
Posts: 58
BRL$: 199.88 Thanks: 0
Thanked 1 Time in 1 Post
Rep Power: 7 | | Re: Looking for Ajax Uploading script ? Hello,
You can use below mentioned PHP Upload script:
<?php
require_once "PHPFTP.php";
$ftp = new PHPFTP();
$result = $ftp->Connect(' To view links or images in this forum your post count must be 1 or greater. You currently have 0 posts.name','password'); if ($result == 0)
{ $ftp->DoCommand('enter command here', $result_number, $result_text);
echo "$result_text ($result_number)";
$ftp->DoCommand('another command', $result_number, $result_text);
echo "$result_text ($result_number)";
$ftp->Disconnect(); } ?>
Thanks,
Sandeep Gandhi | █ Jobs In !!! - Post Jobs, Hire Employees, Create Blogs and
Earn Money. | | | | 
December 22nd, 2008, 01:50 AM
| | Jr. Member
Join Date: Dec 2006
Posts: 163
BRL$: 378.76 Thanks: 1
Thanked 2 Times in 2 Posts
Rep Power: 67 | | Re: Looking for Ajax Uploading script ? Quote: Hello,
You can use below mentioned PHP Upload script:
<?php
require_once "PHPFTP.php";
$ftp = new PHPFTP();
$result = $ftp->Connect(' To view links or images in this forum your post count must be 1 or greater. You currently have 0 posts.name','password'); if ($result == 0)
{ $ftp->DoCommand('enter command here', $result_number, $result_text);
echo "$result_text ($result_number)";
$ftp->DoCommand('another command', $result_number, $result_text);
echo "$result_text ($result_number)";
$ftp->Disconnect(); } ?>
Thanks,
Sandeep Gandhi | This is simple uploading script using FTP i am looking for Ajax upload script and not simple one... | |
__________________ Web Developer
( To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. ) █ Jobs In !!! - Post Jobs, Hire Employees, Create Blogs and
Earn Money. | | | | 
December 22nd, 2008, 06:55 AM
| | Jr. Member
Join Date: Dec 2008
Posts: 165
BRL$: 39.67 Thanks: 0
Thanked 3 Times in 3 Posts
Rep Power: 18 | | Re: Looking for Ajax Uploading script ? Have you refered this To view links or images in this forum your post count must be 1 or greater. You currently have 0 posts. ??
I think it is the php ajax script for file upload. | █ Jobs In !!! - Post Jobs, Hire Employees, Create Blogs and
Earn Money. | | | | 
December 22nd, 2008, 07:26 AM
| | Jr. Member
Join Date: Dec 2006
Posts: 163
BRL$: 378.76 Thanks: 1
Thanked 2 Times in 2 Posts
Rep Power: 67 | | Re: Looking for Ajax Uploading script ? Quote: | Have you refered this To view links or images in this forum your post count must be 1 or greater. You currently have 0 posts. ??
I think it is the php ajax script for file upload. | Hi a2zorkut,
I will check above url for Ajax Uploading script in php . | |
__________________ Web Developer
( To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. - To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. ) █ Jobs In !!! - Post Jobs, Hire Employees, Create Blogs and
Earn Money. | | | |  | |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | | |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | | |