Jump to content
xisto Community

dragonfang00

Members
  • Content Count

    74
  • Joined

  • Last visited

Posts posted by dragonfang00


  1. in the layout theme of the member profile, you can use css.. it's safer than html and is much wider range of layout than giving them few specific choices of layouts..

    secondly about the profile page, all you need to do is the main framework and the $_COOKIE variable from PHP particularly the setcookie() function..

    example:
    by logging in i have a username "dragonfang00"

    setcookie("username", dragonfang00, time()+3600);

    now for the cookie variable:

    if (isset($_COOKIE['username'])){	$username = $_COOKIE['username'];}

    and just use a mySQL command to find other information about the user and just create a script to output that information in his/her profile page...

    about the security, i prefer you to add captcha in the registration and email verification.. you can also add in the log in area..

    for me I don't want you to use any software like php-fusion or joomla or wordpress because you can't edit it the way you wanted...

  2. you will need to create a script with $_GET placing it in the logging page.. after this method you should put another $_GET in the website to where it is redirected so you can differentiate it..

    example:

    <?php$authent_type = $_GET("auth_type");?>

    and you'll just add the auth_type with it's username and/or userID in the link like
    http://domain.com/redirect.php?uname=username&uID=1234567&auth_type=<?php echo $authent_type; ?>

    OR

    you can also do it without using $_POST variable but instead creating a cookie.. setcookie() function will do the work replacing the $_POST variable and it is much easier..

    example:

    setcookie("user", $username, time()+3600);

    where "user" is the name of the cookie, $username is it's value, and the timeline on how long it will be in the user's machine...

  3. just like rvalkass.. I started using html and css as soon I knew it existed.. They are like partners for me.. no css no html.. and now I already have a company when I am creating a web site = CSS, HTML, and PHP...everytime I am thinking of a site I am thinking first of a website layout for the css.. It's like "float" is much better than table.. and sometimes table WITH a STYLE is much better than normal table tag without a style..you can do many things with css not just changing font colors and backgrounds...


  4. when will you post your browser? I think I will like to see that.. why do you call it sucky? it's your work and you should love it even it's the worst program ever built in the world.. just like one of One Piece's character said.. "If you made something even it is bad or good, best or worst, tell everybody that you made it with a DON"


  5. google is great.. it is much accurate than any other search engines.. and about the Gphone I think I already heard of it.. I just can't remember though..In the past years, my toolbar is Yahoo.. but since 2007, i am already using google toolbar and it's search engines..for the google OS I just hope it won't cost a lot.. since MS and MAC are both expensive.. If that will happen, I think i will stick to linux.. :lol:


  6. stealing is stealing.. copyright infringement is stealing.. piracy is stealing...as long as you will not use the content for public viewing, like for learning purposes only, then ask and tell the author first.. or you may find yourself stealing even if you don't know it..


  7. HiI would like to learn a Programing Language. I have tried dev c++ which I found was really complicated, so I probably won't like c++ but I would like to learn java and would like to have a link for free java. Oh and I'm only 15 and like computers and would like to start creating 3D games so does any1 have any programing languages that works with openGl

    -reply by Wayne


    you can try Game Maker..

    but I will tell you that I prefer C++ than any others..

  8. basically you want to automatically create pages when people sign up. you don't need to automatically create sub domains to do this though. you do however need to automatically create directories for each individual user signup. is there a reason why you would want to create individual subdomains rather than individual directories?
    now to answer your question, i believe there are simple scripts floating around here and there for $100 or so which will do what you want. if you need more advanced programming, i suggest hire a programmer. other than that, i hope someone someone can answer your question better because i would love to look at a script that does this.


    well, i can do this but I don't know the code.. I don't really need to hire a programmer because I can actually do it.. the thing is I don't know the code for the automatic creation of subdomain/directories and putting/creating the files in that directory..

    What you can do is add a new wildcard subdomain. You can do this with DNS management like the tutorial I linked to below tells you to, but if you do not have access to your DNS management you can just add a new subdomain in your cpanel. To make it wildcard just add *.yourdomain.com. After doing this give the server some time to update, but if you did it right any subdomain you go to should return the same output as your root domain name (i.e. your index page).
    After you add *.yourdomain.com create the .htaccess file below, and then all you have to do is have php make new directories in your root folder with the dynamic subdomain you want.
    Source


    thanks.. I'll try it on my host and if I can do it i'll use it on my project.. XD thanks a lot..

  9. I am testing them twice so I will have results that I really want to.. first test will be locally then the second with my host..you can use xampp and the like and just install them in your computer.. there are many kinds of programs like xampp, just search the net and you will find one..


  10. Hi everyone,i really don't know if this is the right place, so please just move this to the right category..now here's my problem:I want to create a website for my high school batch graduated last 2004 so we can interact to our old friends. but i want it to be like ning.com, myspace.com or friendster.com that you can add your own layout (css) for your profile and putting the new user in it's own profile page (using a subdomain for their own profile page)can anyone tell me how to automatically create the subdomain and putting the CSS and other files in the subdomain automatically? thanks in advance..

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.