Need help with simple php/mysql will pay $50
Hello everyone, I'm having a bit of trouble finishing up a small php/mysql project, i have almost all of the code done i just need some help debugging some code and writing 2 new functions. Shouldn't take more than an hour I'd guess, if you have good experience with php/mysql. I'm willing to pay $50 through paypal if someone helps me complete it. I'm an honest person so i'm not going to try and rip anyone off. Thanks.
p.s I'll be back on to check for replies at around 4:00 est today(after work)
a-hack wrote: That's a fair suggestion, i'd would also be very happy if anyone wants to help me out with this later on during thet day. I have to goto sleep soon.
As long as "help out" != "do for", I won't mind helping where I can. Not like I don't do PHP / MySQL for 8+ hours a day already, anyways.
I'm trying to get an opensource php/mysql program called "phprentals" to work, I've modified some of it and everything works fine except for images being displayed, didnt work correctly before i modded it either. And also I want to add a function where users can choose their passwords, so they're not some crazy numbers that get auto emailed to you, that are hard to remember. Heres a link to the source and a demo. http://scripts.ringsworld.com/classified-ads/phprentals/
btw the page that doesnt display the pictures is the details.php page, and the addlistings.php and add.php pages are where you upload them.
Thanks.
haha
http://www.sc<em><.com/em%3Eripts.ringsworld.com/classified-ads/phprentals/
a-hack wrote: I'm trying to get an opensource php/mysql program called "phprentals" to work, I've modified some of it and everything works fine except for images being displayed, didnt work correctly before i modded it either. And also I want to add a function where users can choose their passwords, so they're not some crazy numbers that get auto emailed to you, that are hard to remember. Heres a link to the source and a demo. http://scripts.ringsworld.com/classified-ads/phprentals/
btw the page that doesnt display the pictures is the details.php page, and the addlistings.php and add.php pages are where you upload them.
Thanks.
Umm… yeah, I'm not going to fool with that. As for modifying it to work correctly, just check out the code that's already there and see what's going on. Are the images uploading correctly? If so, getting them to display should be simple as long as the src points to them. If not, check the routine that does the upload and the db insert (if any).
As for the password function, just rip what they're using to create "crazy numbers that get auto emailed to you". That'll give you the db insert and the encryption they're using; just swap out the random generator (maybe a uniqid() function) with a POST value from an input tag (and make sure to sanitize it).
So… try that and see how that goes.
Umm… yeah, I'm not going to fool with that. As for modifying it to work correctly, just check out the code that's already there and see what's going on. Are the images uploading correctly? If so, getting them to display should be simple as long as the src points to them. If not, check the routine that does the upload and the db insert (if any).
As for the password function, just rip what they're using to create "crazy numbers that get auto emailed to you". That'll give you the db insert and the encryption they're using; just swap out the random generator (maybe a uniqid() function) with a POST value from an input tag (and make sure to sanitize it).
So… try that and see how that goes.
I should have thought of that before, thanks for the input.