I am new here. I am sorry is its not right to ask here. I want to know what script does these two sites use as they are identical in every way. http://someimage.com/ imgbox.com I am looking forward to some help , much appretiated. Thanks
Image sharing scripts are extremely simple and are available for free all over online. It's possible the scripts are the same but it's also very possible somebody wrote a different script (or found a free one online for that matter) and used the same template as the other site.
I know it's the same template but i just want to know the script name bcos it's the same anyway thanks for your reply !
For what purpose do you want to know the script name? Are you trying to open your own image hosting website? If so I highly discourage it because there are already so many out there it would be very difficult for yours to be popular. Additionally, you don't even know how to code an image hosting script so that even further sets you back from the rest of image hosting websites.
It s for personal use and who said that i dont know how to code a script? I just dont want to waste my time to code something that i can find on the net for free or paid anyhow its will cost less than if i code by my self
If it's for personal use why are you set on acquiring the script for this one? Google free image hosting script online and I guarantee you will find 20 to sift through and pick from in a relatively quick amount of time. Not to mention I very much doubt you know how to code an image hosting script considering you posted this thread about 8 days ago and are still inquiring about which specific script these sites are using when an extremely basic image hosting script is about 20-30 lines of code at the most.
I know how to search on google lol as i said i want this script not others otherwise ill not ask for help.
<html> <head> <title>Image Hosting Script</title> </head> <body> <form action="image.php" method="post" enctype="multipart/form-data"> <label for="file">File:</label> <input type="file" name="image" id="file" /><br /> <input type="hidden" name="submitted" value="true" /> <input type="submit" value="Upload!" /> </form> <?PHP if($_POST['submitted'] == "true") { move_uploaded_file($_FILES['image']['tmp_name'],'uploads/' . $_FILES['image']['name']); echo "File uploaded!"; } else { } ?> </body> </html> Code (markup): There ya go! EDIT: Sorry I did not see your above post before posting this one
I didn't see your post above that one until after I had already posted mine, hence the fact that I edited it. Sorry, but as you can see here there is absolutely no way of determining what script those sites are using without diving into the code they are using which just isn't possible. Though using the above code with the design on their site (which you can rip off if you wanted to and it's only for personal use) there would be no distinguishable difference with a few tweaks to the code. The script they are using isn't necessarily associated with the design of the website. Other than that I don't know what to tell you or what anyone else could tell you to appease you since none of us can see the PHP source code. If you're sole interest in the code of this site is for personal use than I am unable to see why the above code cannot satisfy your needs. If your intent is to create a website of your own using the code used by these sites then 1) Learn PHP 2) Don't bother trying to get into an already tapped-out online market.
Ok no prob anyway thanks and as i said before i know how to code so i know php ^^... But i allready see this script in action years ago thats why i posted here to find out the name.