palladin
Members-
Content Count
93 -
Joined
-
Last visited
About palladin
-
Rank
Member [Level 3]
-
Or change server to Xisto
-
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
-
Designing Index Page With Target - the table instead of using frame
palladin replied to BuffaloHelp's topic in Programming
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 -
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
-
weeeellllll .... she got right
-
Someone Know Good Advertise Program ... must pay by e-gold
palladin posted a topic in Business Forum
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 ?!? -
Is It Possible To Add Code To Phpbb Adding HTML What Not
palladin replied to wariorpk's topic in Web Hosting Support
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 -
Hope To Find A Counter For Each Article In A Blog
palladin replied to whistle's topic in Websites and Web Designing
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. -
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.
-
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 :]
-
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
-
Html Tag For A Code Box Where You Put HTML Code For Your Users
palladin replied to wariorpk's topic in Web Hosting Support
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 -
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
-
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
-
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