Jump to content

Hood15

Members
  • Posts

    12
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Hood15's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I'm working on a script that when you submit the form it returns what group you'd be assigned to based on email. the database table groups has a field called "strings" and we have saved for example @gmail.com and any email containing @gmail.com will be assigned to G Mail Users. I'm having a hard time establishing how I want to do this. The one way I know I can do it is by fetching all the fields and then matching it up using stristr. I was thinking there has to be a better way using the mysql functions.
  2. Alright, I've taken out majority of the paragraph besides what I estimate it to be at $20/hr. I get what you guys are saying about the word cheap but it wasn't meant as far as quality of product, just the price of product. There is a difference and most people should have the ability to separate but I took it out anyways. I get what you're saying as far as why they charge so much in most cases but not everyone can afford that and there is a market for that (which I'm trying to get at). I have no intentions of trying to make a 6 figure salary. Just want like a project a week. I'm a college student and just want to make some extra money doing something I can do, and have a decent time doing in my spare time. Thanks for your critique.
  3. Didn't really think of it like that, thanks. Most php freelancers charge a lot. I was trying to advertise reasonably priced work. Thanks for showing me how in came across. As far as getting what you pay for: I can prove it isn't like that.
  4. Thank you for your input, - I was going for simple but yeah it's a little bland, I'm trying to get in touch with a designer to make another layout. - The images at the bottom are there because those are the tools I use most. I may take your advice and scale them down a bit. - It's a site representing a php freelancer, a php logo is pretty relevant.
  5. Website was thrown together in a few days. Basically has a news page so I can tell people when I make new things, there's a scripts page so that I can make scripts and release them (for free) to show people my coding style, users can register and login and comment on news articles and scripts. Site's basically to help get me freelance php work. http://www.phpdanny.com
  6. thanks thorpe thewooleymammoth - on the demo chat with the demo account? I'm gonna change the config file to let anyone change their color, you can re-test whenever. I'm going to change the theme, hopefully have someone develop a new one, thanks. How do you like the way it functions?
  7. Replace Job number with Job # Make Job Status just say status and have the green/blue image with alt text. That should make it a little smaller.
  8. I'm working on developing some new open source chat software. It runs with smarty template engine, jquery, and the rest is all created from scratch. The messages are stored in files rather than in databases. Theres a command system in place but is also going to have an admin cp, user cp, and mod cp. Users are stored in a mysql database, along with online users and modules, it's made modular so that addons can simply be made: such as private messages, a shop, etc... http://osphpchat.com is going to be the site for the software, right now there's just forums (myBB) and a current version of the chat. Another demo site could be chat.nittodreamteam.com You can beta test them both as they're the same files (chat.nittodreamteam.com is where I update first though, that's going to be the "playground"). Some commands are: - /color {type} {hex_code} -- type is either "user" or "message" by default is message. - /suggest {suggestion} -- saves your suggestion in a file for us to see. I haven't made many commands yet, we also have a kick command right now though. On nittodreamteam you cannot use the color command but the demo account on osphpchat can. -- I know this might belong better in the beta test section but I posted it yesterday and still waiting approval.
  9. Hood15

    Regex Help

    Hello, I've already done the task by using explode and stuff. However, I think that regex would be faster and the right thing to use. Could anyone show me how this can be done with regex? I'm attempting to change in to The code I used to get that with explode was $_blocks = explode(';', $main_class->modules->info['blocks']); for ($i = 0; $i < count($_blocks); $i++) { $side = explode(':', $_blocks[$i]); $files = explode(',', $side[1]); for ($file_i = 0; $file_i < count($files); $file_i++) { $blocks["{$side[0]}"][] = $files["{$file_i}"]; } } print_r($blocks);
×
×
  • 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.