Jump to content

cmgmyr

Members
  • Posts

    1,278
  • Joined

  • Last visited

    Never

Everything posted by cmgmyr

  1. a few ideas: http://www.google.com/search?hl=en&q=php+post+to+myspace
  2. looks good i like it a lot. you should throw your css in an external file. under "INSPIRATIONAL QUOTES" I would change that green fade to a blue.
  3. Non-disclosure agreement
  4. glad you liked it, hopefully it goes back online soon. I get a lot of good stuff off of there for flash and stuff
  5. now thats an idea!
  6. ...maybe?
  7. o got ya
  8. they might not have broken the law if you agreed to those terms
  9. you could probably use a session too...but the way you just listed would be the easiest
  10. I have quickbooks pro:professional services it's very easy to use and keep track of things.
  11. you should check out dreamhost and bluehost. If you like dreamhost let me know, I'll give you a discount coupon. PM me if you want it
  12. wow...what company is this? Looks like you need to look for a new host
  13. check out: http://www.tutorialized.com/ they have some good PHP OOP tutorials...and they are free
  14. Take out: mail($email, $emailsubject, $body, "From: $fromname <$fromemail>"); the if statement sends the email
  15. Hey Everyone, I was wondering where people got their "open-source" music for websites/flash. I'm looking to get into some flash stuff and was wondering if you had any good sites that you go to. Thanks
  16. yes, you have 2 files ".htaccess" and "profile.php"
  17. ...correct You don't want to have 50,000 pages if you have 50,000 users if you can just handle 50,000 profiles with 1 file
  18. <input name="password" type="password" id="password"> setting the type as password will "mask" it
  19. do you mean like making admin.html, user1.html, etc.?
  20. you don't need to use it...it's just how it works, the .htaccess converts it to that without you actually seeing it...but thats how the php reads it.
  21. not sure I quite understand your question... it allows you to use www.mywebpage.com/admin like www.mywebpage.com/profile.php?username=admin and vice versa
  22. you put your .htaccess file in your web root. You also have profile.php there. The .htaccess is saying take www.mywebpage.com/admin and make it like www.mywebpage.com/profile.php?username=admin get it?
  23. in your .htaccess RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/\.]+)/?$ profile.php?username=$1 [L] in your profile.php $username = $_GET['username']; //query DB for the username and get the user id this should get you started
  24. You could just do something like this: <?php $homePage = $_SERVER['REQUEST_URI']; $homePage= str_replace('/indie/', '', $homePage); echo $homePage; //index.php?list=top ?>
×
×
  • 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.