Jump to content

FrostiE

Members
  • Posts

    18
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

FrostiE's Achievements

Member

Member (2/5)

0

Reputation

  1. Thanks for the reply's. Reason the script is custom is because there is no real alternative that gets the job done. I've been playing around with hourly rates but it seems pretty high and I dont want to chase away business. Thats why I was hoping to get maybe a rough estimation at how much it should go for. And yeah, he's happy with the script.
  2. It took about 5 days of hard work. Because I freelance it wasn't a 9-5 job, but after that. About how much my time is worth, I don't know what you mean. I assume your talking about qualifications etc.
  3. Hey, Not having been in this situation before I didn't really know where else to ask. I recently wrote a custom PHP and Javascript/AJAX script for a client. Its basically a Project management system that allows all the aspects of a business to be tracked, including weekly production and progress on tasks, deadlines, full multi-user support with different access levels, individual day book/calendar etc. Its about 3400 lines of PHP and just over a 1000 lines of JavaScript. Its done in a user friendly drag-drop style (similar to windows) and obviously includes a design with it. From what I've been looking at, you can be looking at a couple hundred dollars for just a design without coding, so where would I start pricing wise on such a big script? Thanks in advance
  4. Thanks a lot dude, I actually kind of figure out a way, by just constraining the object inside the parent div, which also makes the dragging a lot nicer, but this is going to be helpful !
  5. Hey, One of the things I'm trying to get working at the moment is dynamic thumbnailing. Basically the user has the choice for a auto thumbnail (crop to 1:1 proportion ratio, and resize) or a manual thumbnail. http://ewanfrost.com/modman/thumbnail.php -> (haven't tried IE compatibility yet, since its just a tech test) Ok, so I'm trying to test it in some kinda gallery environment (picture above). By click on the image, if makes a absolute positioned DIV appear, and loads dynamic content (the larger image and scroller) using Prototype's AJAX.Updater function. The problem is, if I try and find the the left position of the image offsetLeft, it returns 0. I assume this is because its 0 px away from the side of the div. Does anyone know how I could insert it into the DOM where it is considered part of the document and the calculations will involve the whole document, if not, any suggestions and ideas would be great. Thanks!
  6. Hey, One of the projects im working on at the moment is using dynamic image generation from php using GD, and then update a div with the new image. It only updates once, and I dont want to stop the whole page from caching. Anyone know how to get only the image not too cache? Thanks in advance!
  7. Ahh thanks ! Somehow managed to overlook the is_int function.
  8. Hey, Was hoping you people could help me... What I'm trying to do, is to check whether a divided number is a integer or a fraction. A number gets divided by a incrementing for integer. I tried ctype_digit but it doesn't seem to work with any divided result. If you could help, I would really appreciate it !
  9. Sorry bout the posting mistake, anyways, I was talking about javascript and I fully realize that they are different. Other thing is that i dont want to use the standard scrollbars, Im wanting to make a custom one. Iv seen it done before and was wondering if anyone could help
  10. Hey, im back again begging for help !! I don't know if this is the right forum to ask in, but its the only webdev forum I'm a member of. What I'm wanting to do is have a javascript scroll bar inside a table that scrolls through loaded content, it will be image thumbnails thrown out by a php script. Problem is I dont know how to make such a scroll bar Could someone please help me shed some light on this? Thanks in advance ! Regards
  11. Hey, For one of the projects im working on I want to have a almost BB style editor, I have that so far, but here is the problem. I am wanting to convert it to more of a WYSIWYG editor. Basically if you apply bold or italics to text it will change instantly. What would the best way of doing this be, and how would it be saved to the database to be read at a later stage? Thanks in advance!
  12. Hey. I was wondering if anyone could help me with this. Is it possible to add a semi-transparent water mark to a photo using PHP? Basically it would just be a copyright that is overlayed over the original. But being a photo, it would be better if it was semi-transparent. If anyone could help it would be greatly appreciated!  ;D
  13. Hey, I was wondering if anyone here could give me some suggestions on which webhost to pick, Basically what im wanting from a webhost is this : 1) 1Gb + space 2) 25GB + bandwith/month 3) good uptime and reliable 4) fast servers 5) good price If anyone can suggest a webhost it would be great!
  14. I have made a treeview in PHP thats reads from the database. The only thing I need to do now, is make it so that if the folder icon next to the category gets clicked, it closes that category and subcategories. If someone could help me I would really appreciate it!
  15. Ok, got another problem, should be my last :-D. Anyways, what im wanting to do, if find all parents of a single entry, basically, for a bread crumb. Now I want them seperated by a "," sign or something like that, so I can explode them into a array at a later stage when I fetch them from the database. The code here is similar to the code I was helped with earlier, but just a little changed [code]function listparents ($id) {     include("db.inc");          $res = mysql_query ("SELECT id, parent FROM proj                               WHERE id = '$parent'                               ORDER BY id");          while (list($id, $parent) = mysql_fetch_row($res)) {          $parents = $parents.",".$id;          listparents($parent);                                   }          }[/code] if I say use [code]listparents ($row['id']); [/code] and add a echo line to the bottom of the listparents function, it give me exactly what I want, exept with a , at the beginning. The only problem is a dont know how to get the final result being say : 15, 19, 32, 45 back to the original function, to add it to the database. Any help is really appreciated!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.