Jump to content

cmgmyr

Members
  • Posts

    1,278
  • Joined

  • Last visited

    Never

Everything posted by cmgmyr

  1. cmgmyr

    IPOD

    Check this out: http://macs.about.com/od/ipod/a/copy_from_ipod.htm
  2. start off with 3 tables Users: ------ userid username password email ... Profile: userid profile website photo ... Rate: rid userid rating ... Take a look at my site: www.SyracuseBands.net you might get some other ideas too Hope this gets you started in the right direction
  3. Check out what I posted here: http://www.phpfreaks.com/forums/index.php/topic,133807.msg563168.html#msg563168 hope that gets you started.
  4. Did you download or install something, then it didn't work?
  5. Did they ever work? if so, you can go to the device in device manager and roll back the driver to the previous state. Did you check your PC manufacurer's site (or motherboard)? They usually have the most current driver
  6. don't get me wrong...I don't mind if the are here working and taking care of their family...just be a legal citizen and don't think that if you are a minority or alien that everyone else should conform to what you want and/or your culture. Prime example...Did you guys see the email going around? ...about some school in CA flying the mexican flag over the American flag PLUS flying the American flag upside down! If you didn't get it I think I still have it, I can post pics if you want, or PM me your email and I'll just forward it to you. But anyways...that should not be tolerated.
  7. No, sorry that had nothing to do with pay. I don't know if you get it in the news over there but we have been having some imigration problems lately. Like people just walking over and now suddenly they are "Americans". Thats all I was refering to
  8. very nice, I like it a lot. Just a new small things: - On your main nav (bubbles) on the hover I would make the text darker not lighter and I would make the red bullet a little brighter. - maybe a little more padding on the body text and in the right hand boxes. looks great though!
  9. Why not? Everyone is doing it! All you have to do is say you are an American and your in ...ouch
  10. SELECT * FROM gems ORDER BY carat ASC
  11. #1. you double posted. #2. try google #3. this is for HELP with a script that you already have...we will not find one for you.
  12. just take the last_insert_id() after the first insert and apply that to $id (or something) then just use $id for the other 2 inserts
  13. Check out this tutorial. It might point you in the right direction. http://www.php-mysql-tutorial.com/php-mysql-upload.php
  14. I just started doing it full time a few months ago, but my projections for the first year (from the money I've already made) will be about $35K this year. As I've said in various other posts I usually charge a flat rate/project that comes out to about $40-$50/hr. The other point that I would like to make is that I DON'T work a full 40 hrs/week...which could be a good or bad thing...I think it's great!
  15. try this: <?php $userid = 1; echo fill($userid,6); function fill($val,$properlen){ $i=0; $l=strlen($val); $properlen = $properlen - $l; $tmpstr=$val; while ($i<$properlen) { $tmpstr="0$tmpstr"; ++$i; } return $tmpstr; } ?>
  16. I replied to: http://www.phpfreaks.com/forums/index.php/topic,139197.msg590927.html "I usually try to stay around $40-$50/hr (or more if I get done quicker)"
  17. I usually try to stay around $40-$50/hr (or more if I get done quicker)
  18. $output = mysql_real_escape_string($input);
  19. Well with the application layer you have your gui and actual program, transport brings it down to binary, network puts it into packets, link sends it over the physical. ...I think I got that right, it's been a while since i've done this
  20. Do you have to show how your application works at each level of the OSI model? ...sorry not wuite sure what you are getting at, can you elaborate?
  21. i don't think that the wait state times out...I might be wrong but when I've tried a bad php code with ajax I let it go for a while and it never timed out.
  22. <input name="password" type="password" size="13" /> you have to set type as password
×
×
  • 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.