Today's Posts Follow Us On Twitter! TFL Members on Twitter  
Forum search: Advanced Search  
Navigation
Marketplace
  Members Login:
Lost password?
  Forum Statistics:
Forum Members: 24,254
Total Threads: 80,792
Total Posts: 566,471
There are 1006 users currently browsing (tf).
 
  Our Partners:
 
  TalkFreelance     Marketplace     Services Offered / Looking to Hire     Programming or Coding :

Im bored, So request a script.

Thread title: Im bored, So request a script.
Closed Thread  
Page 1 of 3 1 2 3 >
    Thread tools Search this thread Display Modes  
10-09-2006, 07:39 PM
#1
localhost is offline localhost
localhost's Avatar
Status: Dediport Hosting
Join date: Jul 2006
Location: Berkshire
Expertise: programming, business
Software: Dreamweaver
 
Posts: 1,316
iTrader: 17 / 100%
 

localhost is on a distinguished road

  Old  Im bored, So request a script.

Im actually really bored atm so i will make some free SMALL php scripts for people, The only thing you have to do is request the small script and give a testemonial afterwards.

Stevem

10-09-2006, 08:06 PM
#2
Yze is offline Yze
Yze's Avatar
Status: Junior Member
Join date: Jan 2006
Location:
Expertise:
Software:
 
Posts: 25
iTrader: 0 / 0%
 

Yze is on a distinguished road

Send a message via AIM to Yze

  Old

how small of a script

10-09-2006, 08:08 PM
#3
localhost is offline localhost
localhost's Avatar
Status: Dediport Hosting
Join date: Jul 2006
Location: Berkshire
Expertise: programming, business
Software: Dreamweaver
 
Posts: 1,316
iTrader: 17 / 100%
 

localhost is on a distinguished road

  Old

A small script is a small script, post it and I will say if I will do it or not, and those wondering about bigger php scripts, I do do paid work, but no in this thread!

10-09-2006, 08:09 PM
#4
Marky is offline Marky
Status: Ready for Action
Join date: Aug 2005
Location: UK
Expertise:
Software:
 
Posts: 2,775
iTrader: 14 / 100%
 

Marky is on a distinguished road

  Old

I request a custom proxy script... Pweese ^^
Or a custom image host script

10-09-2006, 08:09 PM
#5
Yze is offline Yze
Yze's Avatar
Status: Junior Member
Join date: Jan 2006
Location:
Expertise:
Software:
 
Posts: 25
iTrader: 0 / 0%
 

Yze is on a distinguished road

Send a message via AIM to Yze

  Old

how about a small comment/tag/msg box that i can include anywhere on a site? too big?

10-09-2006, 08:12 PM
#6
localhost is offline localhost
localhost's Avatar
Status: Dediport Hosting
Join date: Jul 2006
Location: Berkshire
Expertise: programming, business
Software: Dreamweaver
 
Posts: 1,316
iTrader: 17 / 100%
 

localhost is on a distinguished road

  Old

Originally Posted by Yze
how about a small comment/tag/msg box that i can include anywhere on a site? too big?
Tell me more

Originally Posted by Marky
I request a custom proxy script... Pweese ^^
Hmm, Maybe too big, what do you mean about the image hosting script?

10-09-2006, 08:13 PM
#7
Marky is offline Marky
Status: Ready for Action
Join date: Aug 2005
Location: UK
Expertise:
Software:
 
Posts: 2,775
iTrader: 14 / 100%
 

Marky is on a distinguished road

  Old

Originally Posted by webmonkey
Tell me more


Hmm, Maybe too big, what do you mean about the image hosting script?
I mean just a simple upload your picture and come out the other side sort of thing

But come to think of it, I wouldn't really have a use for an image host script

10-09-2006, 08:16 PM
#8
localhost is offline localhost
localhost's Avatar
Status: Dediport Hosting
Join date: Jul 2006
Location: Berkshire
Expertise: programming, business
Software: Dreamweaver
 
Posts: 1,316
iTrader: 17 / 100%
 

localhost is on a distinguished road

  Old

lol,

Ive written an image upload script before when I was bored, Let me dig it up,

Here:
PHP Code:
<?
//print_r($_POST);

if($_POST["action"] == "Upload Image")
{
unset(
$imagename);

if(!isset(
$_FILES) && isset($HTTP_POST_FILES))
$_FILES $HTTP_POST_FILES;

if(!isset(
$_FILES['image_file']))
$error["image_file"] = "An image was not found.";


$imagename basename($_FILES['image_file']['name']);
//echo $imagename;

if(empty($imagename))
$error["imagename"] = "The name of the image was not found.";

if(empty(
$error))
{
$newimage "images/" $imagename;
//echo $newimage;
$result = @move_uploaded_file($_FILES['image_file']['tmp_name'], $newimage);
if(empty(
$result))
$error["result"] = "There was an error moving the uploaded file.";
}

}

?>


<form method="POST" enctype="multipart/form-data" name="image_upload_form" action="<?$_SERVER["PHP_SELF"];?>">
<p><input type="file" name="image_file" size="20"></p>
<p><input type="submit" value="Upload Image" name="action"></p>
</form>

<?
if(is_array($error))
{
while(list(
$key$val) = each($error))
{
echo 
$val;
echo 
"<br>\n";
}
}
?>
Anyone else?

** Awaiting testemonia Marky **

10-09-2006, 08:19 PM
#9
Marky is offline Marky
Status: Ready for Action
Join date: Aug 2005
Location: UK
Expertise:
Software:
 
Posts: 2,775
iTrader: 14 / 100%
 

Marky is on a distinguished road

  Old

Originally Posted by webmonkey
lol,

Ive written an image upload script before when I was bored, Let me dig it up,

Here:
PHP Code:
<?
//print_r($_POST);

if($_POST["action"] == "Upload Image")
{
unset(
$imagename);

if(!isset(
$_FILES) && isset($HTTP_POST_FILES))
$_FILES $HTTP_POST_FILES;

if(!isset(
$_FILES['image_file']))
$error["image_file"] = "An image was not found.";


$imagename basename($_FILES['image_file']['name']);
//echo $imagename;

if(empty($imagename))
$error["imagename"] = "The name of the image was not found.";

if(empty(
$error))
{
$newimage "images/" $imagename;
//echo $newimage;
$result = @move_uploaded_file($_FILES['image_file']['tmp_name'], $newimage);
if(empty(
$result))
$error["result"] = "There was an error moving the uploaded file.";
}

}

?>


<form method="POST" enctype="multipart/form-data" name="image_upload_form" action="<?$_SERVER["PHP_SELF"];?>">
<p><input type="file" name="image_file" size="20"></p>
<p><input type="submit" value="Upload Image" name="action"></p>
</form>

<?
if(is_array($error))
{
while(list(
$key$val) = each($error))
{
echo 
$val;
echo 
"<br>\n";
}
}
?>
Anyone else?

** Awaiting testemonia Marky **
oooo that's nice! However, there isn't a display saying "Your image has been saved at: BLAHBLAG.gif"

That would be nice ^^

10-09-2006, 08:23 PM
#10
localhost is offline localhost
localhost's Avatar
Status: Dediport Hosting
Join date: Jul 2006
Location: Berkshire
Expertise: programming, business
Software: Dreamweaver
 
Posts: 1,316
iTrader: 17 / 100%
 

localhost is on a distinguished road

  Old

Ok, Later, Does it work still?

Closed Thread  
Page 1 of 3 1 2 3 >


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

  Posting Rules  
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump:
 
  Contains New Posts Forum Contains New Posts   Contains No New Posts Forum Contains No New Posts   A Closed Forum Forum is Closed