Jump to content
xisto Community

palladin

Members
  • Content Count

    93
  • Joined

  • Last visited

Everything posted by palladin

  1. In CSS Style: background: transparent; In FORM: <input name="txt" type="text" id="txt" value="This is text on transparent text box" style="background: transparent;"> And thats all i got problem with find this too, some time ago. Notice from cmatcmextra: Use html tags for html and code tags for other code. Added code and html bbcode tags
  2. Lol i hate using DIV for make areas on whole page, this is always broke and doing strange things. I prefer tables So try this <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://forums.xisto.com/no_longer_exists/ http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title>Untitled Document</title></head><body><table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td colspan="2"><?php include('top.html'); ?></td> </tr> <tr> <td width="30%"><?php include('menu.php'); ?></td> <td width="70%"> <?php if ( isset($HTTP_GET_VARS['news'])) {include('main.html'); } else if ( isset($HTTP_GET_VARS['page1'])) {include('page1.html');} else {include('wrongpage.html');} ?></td> </tr></table></body></html> and you can put to you navigation menu links like: http://yourpage.com/?news http://yourpage.com/?page1
  3. If someone give me 10 000$ for spend for nothing i start from spend 5000$ for a head doctor for him and last 5 000 spend to count of bear for all Xisto users or new brand keyboard to read more posts
  4. Like in title. Good payable firm what offer me banners, popups, popunders, links ... and other advertise stuff for showing on my page. And pay me for this by e-gold for evry unique ip visitor. Someone know somthing like this ?!?
  5. If you wish change only html code not php. I suggest add them only for phpbb template in forum/templates/templatename directory. All files here is only html pure code and can be edited by almost all html visual editors. Even child can do this
  6. Try this: http://stat.4u.pl/index.html You can configure almost evrything and got nice visitors stats view. In FAQ section you got info how to configure counter for check each page separatly.
  7. Meybe you print variable not declared before. In this case server can assign random memory offset for keeping this variable. But if they not declared/assigned before they hold this what server got on memory adress before.
  8. Nice story but if some one don't know there is windows before Bill Gates come. Bill make them only much more user friendly for 95% "dump" pc users :] + good advertise. And we got recipe for millions 1. Create somthing what can be use by most people.2. Sold this on whole word :]
  9. For cookies: setcookie(cookieid as string, cookie value, expiration date); example: <?phpsetcookie("USER", "GUEST", time()+3600)?> expiration date are counting in seconds so call php time() function give you actual time + 3600 seconds (1 hour) after this time cookie was deleted. setcookie mmust be called before html HEAD section was end; for get cookie just call <?php $user = $_COOKIE("USER");?> evrywhere you wanna -- Session was little more complex: here a link for php help :] http://de2.php.net/manual/de/features.sessions.php -------------------- Practice is when evrything work but no one know why. Theory is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and no one know why Notice from cmatcmextra: Use code tags
  10. You mean this ? <textarea name="textarea" cols="40" rows="4" wrap="VIRTUAL">=====your code=====</textarea> This is HTML code. -------------------- Practice is when evrything work but no one know why. Theory is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and no one know why
  11. Got better idea for you: 1.Go to https://www.phpbb.com/ 2.Read how to install and run this forum 3.Download it 4.Upload to you site 5.Run them 6.Post (like here) evrything what you want .. Using forum you can put evrything what you like and gain comment from others users in easest way 5 years ago you can only dream abount solution like this -------------------- Practice is when evrything work but no one know why. Theory is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and no one know why
  12. Yea but i make small mistake Better write what evry line do for future use. <a href="?ID=2">switch to new page</a> | HTML | this is call index.php?ID=2 if ( isset($HTTP_GET_VARS['ID']) == TRUE) { CODE } | PHP | this is check is variable ID are use as argument in page adress $ID = intval($HTTP_GET_VARS['ID']); | PHP | this assign value from HTTP variables (using in adress) to $ID php integer variable for future use. (ID=1) $ID = strval($HTTP_GET_VARS['ID']);| PHP | this assign value from HTTP variables (using in adress) to $ID php string variable for future use. (ID=news) thats all you can use rvovk example too: Using check only is variable are called: http://forums.xisto.com/no_longer_exists/ if ( isset($HTTP_GET_VARS['news']) == TRUE) { include("news.php")} http://forums.xisto.com/no_longer_exists/ if ( isset($HTTP_GET_VARS['music']) == TRUE) { include("music.php")} -------------------- Practice is when evrything work but no one know why. Theory is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and no one know why Notice from cmatcmextra: Use code tags
  13. I FOUND Mozilla is not support special text format in CSS: display: table-caption; and erase all object what this function try to change And biscuitrat i'm say tabble BG not page BG page BG is off becose i move BG to center table instead whole page no matter i'm happy And meybee someone some day ... from mozzila team ... fix this BUG. -------------------- Practice is when evrything work but no one know why. Theory is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and no one know why
  14. it's easy: First you must get this variable: <?php if ( isset($HTTP_GET_VARS['page'])) { $ID = strval($HTTP_GET_VARS['page']); }?> Next you can use this $ID to chose what page load. In the simple way, using "if, else if" <?php if ($ID == 1){ include("some_page.php");} else if ($ID == 2){ include("some_page2.php");} else{ include("bad_page.php");}?> There is many others way to use this kind variables, from content whole page to content one ceil in table -------------------- Practice is when evrything work but no one know why. Theory is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and no one know why
  15. If someone got Mozilla Firefox then: Here there is site: http://forums.xisto.com/no_longer_exists/ In (IE, Opera) other browsers this page is showing propetly but Mozzilla don't show BG image in tables always when i use style class from CSS just eat whole row. The last menu on right don't use style class from css and mozzila show all BG images. Someone know what CSS function mozzila not support or meybe this is a bug ? If you guys see source code in mozilla you see there is code for this stuff but mozilla ignore them. HELP -------------------- Practice is when evrything work but no one know why. Theory is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and no one know why
  16. Well it's half of winter. No matter whitch year ... Evrywhere lie snow ... I back with she from party in ours school ... I say - Bye, make big smile and go to home . In half of way i got idea "GOSH i'm IDOT" Then i back to she and use my phone ceil to call, asking - Can you go down to me on one second. She live in tent. When she come, in sleep dress ... Evry where lie snow, it's was terriable cold ... she shake like jelly then , without words, i kiss heir ... after this i say - Go sleep i'ts cold and back to home. Next day we meat in school and .... --------------------Practice is when evrything work but no one know why.Theory is when work nothing but evry one know why.Programmers join Practice with Theory - nothing work and no one know why
  17. You and you girl look at the stars and YOU NOT KISS HEIR no way ... ok now for real.What was with your's guys. The first kiss is most biutyfull thing what can happend to mean. REALY. But only in perfect time. If someone take drugs, drink mountain of bear or stronger things then can say is not right, becose for him is not. The first Kiss is only beginning and i'm not say about sex i say about friendship becose if someone think: "love is evrything" then he is a GIRL So if you not think about heir: "This is only stupid girl" then:I suggest take you girl to a walk after party. Wait a some time, talk complement. AND, when you think is right, perfect, ideal time. Stand in place and slooooooowly kiss heir. If you make fast kiss you scraw up this .And for end: 1. if she wanna sell you computer, lost heir :P2. if she don't wanna play with you on your own computer, lost heir :o3. if she delete you best game becose you don't give heir enought time, kiss heir and install your game again --------------------Practice is when evrything work but no one know why.Theory is when work nothing but evry one know why.Programmers join Practice with Theory - nothing work and no one know why
  18. <link rel="Shortcut Icon" href="icon_name.ico"> Place this in HEAD section. But this is work only when someone add you page to favorites. SOMEONE know how to do working icon even if site not added to favorites ? -------------------- Practice is when evrything work but no one know why. Theory is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and no one know why
  19. Here we go: <meta name="description" CONTENT="here put description"> Short desription for yopu page, showing on search engines under page title. <meta name="keywords" CONTENT="="here put key words"> Keywords, if someone write somthing in search engine they looking here for compatibility. If you make page showing how to cook cookies you can put there: "cookies, baking, cooking, food, ...." and all words what can imagine and got somthing close to you page conent. <meta name="robots" content="INDEX,NOFOLLOW"> Command for search engines: INDEX: making index of this html document, (only starting page need this) NOINDEX: not making index of this document (all other include to main page) FOLLOW: index pages after links on indexed document; NOFOLLOW: not index pages after links on indexed document; <meta name="Revisit-After" content="2 days"> Command for search engines, after how many days index you page again. (if you change site title or description often, use this) <meta name="author" content=" "> Author : using in some searchengines only <meta name="email" content=" "> E-Mail : using in some searchengines only <meta name="distribution" CONTENT="global"> if you leave global the page was showing not depend on user leanguage. You can put there you country id to prevent showing you site out of you countre borders -------------------- Practice is when evrything work but no one know why. Theory is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and no one know why
  20. Well i hope they are not demand cash for play after beta test. Only hope becose i know they wanna. And rustypaulin, i dont see any accept que, i just make account and download client without problems --------------------Practice is when evrything work but no one know why.Theory is when work nothing but evry one know why.Programmers join Practice with Theory - nothing work and no one know why
  21. It's look like part of bigger project (exacly like phpbb ) .. you just cut and paste this 6 lines i think. Ok lets start from begining: $userdata (is table variable) and must be declared earlier, like this $userdata['username'] = "Some guy"; $userdata[''session_logged_in'] = true; Above you got this what you missed and how you get this data to $userdata tabble variable ... it's depend what you use to collect data. Phpbb use sql + php session, declare this $userdata as session data and use then evry time when open page getting from session. Well if you write this two lines beforu you six lines, you get: Welcome Some guy message. -------------------- Practice is when evrything work but no one know why. Theory is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and no one know why
  22. When you guys learn to give a full information. Becose answer for you question is: <?phpif (somthing){ print "Wlecome GodlyMoose";}else{ print "Welcome Guest";}?> Write for what you need them, meybe wanna change phbb forum or else, mebye you use sql, meby only cookies. How i can know what you wanna do -------------------- Practice is when evrything work but no one know why. Theory is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and no one know why
  23. And how we can help you ? If there is no table 'ryo_clanscript.security' you must create them, or delete this part of code what demand this table if you don't need them. That's all what i can write withoud code, clue or even site adress --------------------Practice is when evrything work but no one know why.Theory is when work nothing but evry one know why.Programmers join Practice with Theory - nothing work and no one know why
×
×
  • 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.