Jump to content
xisto Community

sinisteredd

Members
  • Content Count

    15
  • Joined

  • Last visited

1 Follower

About sinisteredd

  • Rank
    Newbie [Level 1]

Profile Information

  • Gender
    Male
  • Location
    Netherlands
  1. I'd rather don't want to use any content management system because I wan't to control the backend.also i have 80% done so if I stop now it would be a wast of time ...And if I use a content management system I cant fully control my site our strouble shoot.My only problem right now is how can I list my users from mysql in a link like:- pipo- bob- janetc. etc.so when i click on them i go to theire profile page.
  2. i have mysql databse with user infowhat i want to to do is if a user klicks on view my profile he has to see his profile (if he is logged in)so that he kan change some info like email etc.and when a user kliks on: view all profiles he has to see a list of users which are links and when he kliks on it he goes to the profile of that user.i searched the web but didn't find an snippet or tutorial.sooooo does anyone has a code snippet or tutorial ???thx in advance
  3. well .. i would suggest to slice the image in photoshop.and slice the header, right side(the yellow part) and leftside(the white part).then save for web with html and images.then you open the html in your favorite editor. And you are ready to edit it.But if you want to have the layout to fit any resolution then you have to make a imagewhich repeats itself.
  4. haha nope, it has nothing to do with my current website.hmm here's a smalllll hint: rigor mortis .... .And no it's not a suicide site ...... blehhh.ahh nice ... so you are gonna pwn them :D .whats the theme of youre project?I have found some good snippets for my profile website. *whohoo*Altough it may take some time because i have a busy 10 weeks on work .....
  5. Hey thx for that tutorial, i prefer email valdiation & captcha because automated scripts getting, smarter and smarter every day. I once had a webpage (i wasn't that familier with php),and after a week there where 50 or more regsitered users, but they where al made by an automated script.So this time I'm gonna do it the right way .But i have a some more to learn about good protection.Haha yeah never reveal your secret ingredient.I'm also on a "secret project", and I think it's very orriginal because i never seen this consept on the web.
  6. Hmm the sugestion from menotti gives me another idea I could use some of the scripts from joombla or any other content management systemas a reference.And yea, I' don't want to use a content management system because it has so many features i wont use, and i love to have full controll about the code/designetc.Also I like to start from scratch because in the end it gives me the satisfaction that i've made the whole website to my likings and it would be easierto customise my own code (like shadowx says).And because the site is 50% ready I dont want to stop working on it and use a template or any other thing. I've put alot of work in it, so to move to another"content system" is no option ^^.If you have more sugestions/tips etc please post them, maybe it helps other people to who want to do something like I am.Thx for your help you 2.
  7. Thank you for that fast reply ^^.And you gave me just the right info to start with.And yeah i realise the risk of letting users use html, and i am considering to let usersshoose a layout which i created (this is the safest whay) instead of letting them use theire own html.Thx again, now i am able to work further on my page, which you will see when my hosting request gets aproved.Greets,Edd
  8. Ok first of all my name is EddI'm from the Netherlands and 19 years young.My hobbies are:Downhill biking,dj-ing, chatting(imvu), hanging out with friends, webdesign.And more.Things i like to hear:Industrial, EBM, Terror EBM, Futurepop, Psytrance/GOA, Agro Tech.I think the idea of this hosting company is fantastic. I am looking for a long time to find a decent cheap/free host.I think this could be the company.Greetz,
  9. Ok this is my idea: I am making a website about anime.Its function is add anime, review anime, search anime, anime information.Users can make a profile.People can make a profile which they can edit to theire likes with html to give it a fancy look.(this is what my problem is about)What i would like to know is how can i accomplish this.I already have the database for the anime titles etc ready, the only thing that needs to be done is the profile section.If you have any tutorial, tip or guide i would really really appriciate it.Thx in advance.
  10. Since i can remember i can control my dreams (lucky me). Like i'm living 2 lives one real life and one "dream" life...And in my "dream" i do the things different as from my real life, which helped me trough difficult choises, soooo i know which choise is the best.Also if its a "bad" dream i can weak myself up or turn the situation if I'm "strong" enough.There where situations, i've got killed or something different happend to me.But lately I dream things and after a time i experience a part i've dreamed.What i would ask is there some site about how to interpret a dream ???
  11. I was reading the tutorial and i dont like it. firt of all you shoud use a sql version (its very easy to do administration with, like manage accounts, resetting things etc.) 2nd never play on the pc/server where you installed eathena or any other ro emulator. ps. if there are any people who whant help with there server etc pm me or visit eathena forums, there are many tutorials etc etc.
  12. If you want to learn disigning i would sugest: Turtorialized. it has many tutorials like: designing (photoshop 3D modelling etc.) als there are programming tutorials like: (C++, html, PHP etc. ). It is worth to visit.
  13. I agree with KansukeKojima, I also use only notepad (++) and Photoshop.Altough for complicating designs i use microsoft expression or microsoft visual web developer for web applications.I used Dreamweaver as well but in my opinion its to complicated, so many buttons and stuff, it makes me dizzy
  14. I had the same problem as you, so i will share this script with you. It works great, so i hope you like it. In phpMyAdmin, click on your database then click on SQL at the top. Type this(see code below) in the box and click 'Go': CREATE TABLE `useronline` ( `timestamp` int(15) NOT NULL default '0', `ip` varchar(40) NOT NULL default '', `file` varchar(100) NOT NULL default '', PRIMARY KEY (`timestamp`), KEY `ip` (`ip`), KEY `file` (`file`))Now just copy this code where you want the stats to appear: *you could also save this as: online_users.php (or any name you want) and use: <?php include 'online_users.php'; ?> on the place you want the stat to appear*. <?php//online users$server = "YOUR HOST"; // usually localhost$db_user = "USERNAME"; $db_pass = "PASSWORD"; $database = "DATABASE"; $timeoutseconds = 300; // length of gaps in the count//get time$timestamp = time(); $timeout = $timestamp-$timeoutseconds; //connect to databasemysql_connect($server, $db_user, $db_pass); //insert the values$insert = mysql_db_query($database, "INSERT INTO useronline VALUES('$timestamp','$REMOTE_ADDR','$PHP_SELF')"); if(!($insert)) { print ""; } //delete values when they leave$delete = mysql_db_query($database, "DELETE FROM useronline WHERE timestamp<$timeout"); if(!($delete)) { print ""; } //grab the results$result = mysql_db_query($database, "SELECT DISTINCT ip FROM useronline WHERE file='$PHP_SELF'"); if(!($result)) { print ""; } //number of rows = the number of people online$user = mysql_num_rows($result); if(!($user)) {print("ERROR: " . mysql_error() . "\n");}//spit out the resultsmysql_close(); print("$user"); ?> I hope this is what you where looking for. Good luck
×
×
  • 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.