Jump to content

zeal5050

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

zeal5050's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi Guys, First step, the user will register. He will put in username, Password, Address, Email and etc.. Then, once he registers, It will create a unique page for him on my domain name. For example, if the user puts /davis as his username, php will create a page on mydomain.com/davis. and it will display all his details at mydomain.com/davis Any idea how to go about this ? Thanks so so much for the kind advice and help. I appreciate it a lot! Thanks guys!
  2. hmm I don't think this solution will work for me. I don't think my hosting will allow me to run iexplore. I have come across another solution that uses the SnapCasa API, but I'm having trouble understanding how to implement it in my site. Maybe someone here can shed some light on this. <?php ini_set("display_errors", "on"); error_reporting(E_ALL); define("CODE", "1234"); // depend on what is "User Code" when you register with snapcasa.com define("LOCATION", "http://www.myserver.com/php/images"); // Location to store the thumbnail define("SIZE", "S"); // size of the thumbnail: T, S, M, L function generate_site($url) { $name = str_replace(".", "", $url); $thumb = LOCATION.$name.'.jpg'; $request_for ='http://snapcasa.com/Get.aspx?code='.CODE.'&size='.SIZE.'&url=http://'.$url; copy($request_for, $thumb); } echo "<h3>This is a test of the SnapCasa API<h3>"; generate_site("www.google.com"); ?> There must be a simpler way to get user generated thumbnail images! ???
  3. Thanks for the quick reply! Can you elaborate on this please? how to I control the browser? Do i need to create a function to tell the browser to go to URL? Cheers.
  4. Hi all, I'm interested in creating a social bookmarking site similar to delicious, or digg. However I'm struggling with the conceptualization. I would like for the site to generate a screen shot of the website a user has bookmarked without them actually having to upload an image! I'm wondering if this is at all possible without me storing thousand of images on my database. I searched online and I came across a few alternatives. I was primarily interested in this site, Snapcasa. The site allows you to enter a url and the gets the screen shot based on that url. Any way to incorporate this site into my project? Any help would be greatly appreciated, or if you can point me to some examples of this that would be great also! Regards, Zeal
×
×
  • 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.