2,295 Posted Topics
Re: the html is incomplete, there is no doctype, without a valid dtd declared as the first line the browser is free to interpret the html as anything it wishes the default for Firefox and IE is different, appears different code the html and css properly and the difference,still there, will … | |
Re: there are plenty to tell you where to go, but I suggest you contact the service provider for t[b]their[/b] interpretation as each provider may be different A wildcard ssl certificate allows you to have any number of subdomains on a single certificate, *.mysite.com provides ssl to [noparse]www.mysite.com, pics.mysite.com, Guru.mysite.com, this.mysite.com, … | |
Re: $example does not exist, since php5 it would be $_POST['example'] | |
Re: these standard test beds may assist you [url]http://analyze.websiteoptimization.com/authenticate.php?url=http://allsaintsurc.webs.com/webproject/&[/url] Speed [url]http://validator.w3.org/check?uri=http%3A%2F%2Fallsaintsurc.webs.com/webproject/&charset=%28detect+automatically%29&doctype=Inline&group=0[/url] html check, minor faults, XHTMl requires lower case keys [url]http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fallsaintsurc.webs.com/webproject/&profile=css21&usermedium=all&warning=1&lang=en[/url] CSS check, all good [url]http://demo.opera-mini.net/demo.html?allsaintsurc.webs.com/webproject/[/url] handheld , the potential results of css [icode]@media handheld { }[/icode], very difficult to read as is [url]http://browsershots.org/http://allsaintsurc.webs.com/webproject/[/url] valid only 24 hours [url]http://www.browsershots.org[/url] other browsers, … | |
Re: buy premium membership, unlimited filesize, mark thread solved give me kudos ![]() | |
Re: use a session, its already been established to confirm the login of the librarian,, it has hasnt it? (well it should be) get is visible in the url, http_referer can be spoofed by the user, both are not secure, for an item that is going to be billed to somebody(and … ![]() | |
Re: Dont feel bad[indent]compare this[/indent][indent]with this you could disable keyboard entry of enhancements and make the user highlight and click a button like those above the edit screens on DaniWeb | |
Re: your line 21 could be something like [icode]<td><a href='$title'>$title</a></td>[/icode] assuming there is a field somewhere in the result array that includes a url if the title is not the url [icode]<td><a href='$result['url']'>$title</a></td>[/icode] | |
Re: using, [indent]database email script your site schema flat tile language[/indent]anything else you FORGOT to mention get off your *expletive* and [url=http://lmgtfy.com/?q=complaint+feedback+script]LOOK FOR IT[/url] ![]() | |
Re: if document in frame2 is supposed to gain focus, why not [icode]<body onload='self.focus();'>[/icode] in the document that is loading in frame 2 in frame1 [icode]<body onload='parent.frame2.focus();'>[/ICODE] | |
Re: [code=html] <button id="frorm" onClick="showIt('layer1');">OPEN</button> <script type="text/javascript"> <!-- (document.getElementById) ? dom = true : dom = false; function hideIt(ID) { if (dom) {document.getElementById(ID).style.visibility='hidden';} if (document.layers) {document.layers[ID].visibility='hide';} } function showIt(ID) { if (dom) {document.getElementById(ID).style.visibility='visible';} if (document.layers) {document.layers[ID].visibility='show';} } --></script> <div id="layer1" style="position:fixed; left:10px; z-index:10; width:50%; visibility:hidden; padding:10px; margin:10px; background:#ececec; border: 1px solid;"> … | |
| |
Re: Agree with Twiss, this is a help forum, not a do it for you forum | |
Re: there is a plugin, [url=http://www.bbcode.org/]bbcode[/url], that you may be able to install and use, it is the one used on this site that allows [b]bold[/b] [B]underline[/B] [color=red]color[/color] and the [noparse][code=language] syntax highlighting [/code] [/noparse] that makes the site easier to read | |
Re: the code is wrong, those redirects belong in the <head>, but why ??? do a php redirect on the server, and seamlessly display only the correct page no html required [code=php]<?php if(isset($_GET['x'])) { if($_GET['x'] == "prod1") { header( 'Location: http://www.websiteA.com'); } elseif($_GET['x'] == "prod2") { header( 'Location: http://www.websiteB.com'); } elseif($_GET['x'] … | |
Re: [quote=no thought at all..]Ive decided to post here in php forum because i use php to access the mysql table that holds the registered username and password.[/quote]Ajax is how most, allow javascript, clientside, to interact with php, on the server, where JavaScript does not operate with much efficacy. so why … | |
Re: these standard test beds may assist you [url]http://analyze.websiteoptimization.com/authenticate.php?url=http://www.hssaline.org&/[/url] Speed tweaks [url]http://validator.w3.org/check?uri=http%3A%2F%2Fwww.hssaline.org&charset=%28detect+automatically%29&doctype=Inline&group=0[/url] html check :html 4.01 strict does not support framesets, the dtd for a frameset is [icode]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">[/icode] with the wrong doctype its amazing it displayed in anything \/ [url]http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.hssaline.org&profile=css21&usermedium=all&warning=1&lang=en[/url] CSS check [url]http://demo.opera-mini.net/demo.html?www.hssaline.org[/url] handheld … | |
Re: ssi includes in shtml includes in asp includes in php by far most people have common page elements in header footer menu sidebar includes | |
Re: [code]if($val > 0 && $val <= 9999){ $val = str_pad($val, 4, "0", STR_PAD_LEFT); //bla bla bla submit to query }[/code]unsure about why, sql will strip the leading zeros and process only the value of the column anyway, not valid as a verification tool, to ensure no lost chars once the … ![]() | |
Re: before posting, read how to wrap code in [noparse][code=language][/code][/noparse] tags, makes it easier to read, in this inst code=php more likely to get assistance if the person with potential to assist is not correcting what is seen as impoliteness, (every new poster wonders why few or nobody helps) without beating … | |
Re: take the positioned footer outside of any other container, else it is position relative to the container, not the screen[code=html]<div id="container"> <div id="main"> <div id="terms">// content </div> // closing terms </div> // closing main </div> // closing container <div id="footer"> content </div>[/code] | |
Re: It is possible to use javascript to send an email using the installed email client on the users pc without user input, it is considered unethical but it is possible search javascript.internet.com for the script | |
Re: definition:A:sitemap; non-human readable xml map designed to allow easy access by search engine[indent]ranking:good, intelligence:high; Y/N:veryY[/indent] definition:B:sitemap; human readable html map designed to allow visitors to get past a badly laid out nav menu[indent]ranking:bad, intelligence:none; Y/N:veryN, fix the Nav[/indent][url]http://www.auditmypc.com[/url] has a very good sitemap generator of the first type [url=https://www.google.com/webmasters/tools/home?hl=en]Google webmaster … | |
Re: looked at the page source as did the op, the text is [U]served[/U] properly, perhaps this last in the chain of declarations broke the chain, showing charset[blank] [icode]<link type="text/css" href="../main.css" rel="stylesheet" title="menu" charset "UTF-8">[/icode] should it be ?? [icode]<link type="text/css" href="../main.css" rel="stylesheet" title="menu" charset="UTF-8">[/icode], my translation from Anglais to French … | |
Re: I heard my name,[quote=ME]these standard test beds may assist you [noparse] http://analyze.websiteoptimization.com/authenticate.php?url=http://www.yoursite.com&/ Speed tweaks http://validator.w3.org/check?uri=http%3A%2F%2Fwww.yoursite.com&charset=%28detect+automatically%29&doctype=Inline&group=0 html check http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.yoursite.com&profile=css21&usermedium=all&warning=1&lang=en CSS check http://demo.opera-mini.net/demo.html?www.yoursite.com handheld http://www.browsershots.org other browsers [/noparse] many problems (if present) will show serious code errors in the w3c validator sites will produce blankscreens in browsershots Valid code does not ensure … | |
Re: check what the server settings are, some are still not set to allow .php as the default file name, so assumes a folder without ain index.html index.html, is empty a phone call to webspace provider's tech support dont use other site's names in your posts, [noparse]www.domain.com[/noparse] is probably annoyed at … | |
Re: [code=php]<?php function incrementCounter($counterFile) { //INCREMENT THE COUNTER $current=readCounter($counterFile); $current++; if(!$handle = fopen($counterFile, "w")) { return false; } else { if(fwrite($handle, $current) === FALSE) { return false; } } fclose($handle); return true; } function readCounter($counterFile) { //OUTPUT THE CURRENT COUNT $contents=file_get_contents($counterFile); if(is_numeric((int)$contents)) { return ((int)$contents); } else { return 0; } … | |
Re: [url=http://lmgtfy.com/?q=open+a+link+in+another+frame]instructions for the lazy[/url] instructions of the obscenley lazy [icode]<A href='filename' target='framename'>OPEN THIS LINK IN A FRAME</a>[/icode] | |
Re: just playing while the coffe brews, the only thing I really noticed, was the difference in fieldnames in the original code the html form inputs 'avg' the php form processor validates on $_POST['marks'] = always rejects added some (bad) code that populates the form with partial values more as an … | |
Re: php source code is NOT supposed to show when viewing the rendered page, only the output html would suggest you do a little reading you are changing the process to suit your preconceptioons, instead of using the process as it works | |
Re: when you send code, wrap it [noparse][code=html] [/code][/noparse] tags it makes it easier to read, and shows you where your errors are by code highlighting also get a code highlighting editor, harder to make mistakes when bits of code turn RED when you miss things, what ever you are using … | |
Re: [quote=avanthig] the style property is writing-mode:tb-rl fliterv filterh [/quote] no it isnt[code=html]<div style='writing-mode:tb-rl; filter:fliph flipv;'>1 this is a line<br>2 this is a line<br>3 this is a line</div>[/code]inline styles for examp[le only, get em out into a .css file | |
Re: google webmaster tools | |
Re: Its not for security its because many of the servers between the user and your server may only display a limited character set, and a restricive part of that. other characters in file names, / [space] etc those other characters may cause the request to be lost in its journey … | |
Re: try[code=php]<?php $A=floatval($_GET['n1text']); // if it is not possible for $a to have a decimal component or if the decimal part is not significant intval() can be used if($A>=60) { echo "Congrats!!!<br>Grade1"; } elseif($A <60 and $A >= 40) { echo "Grade2"; } else { echo "Fail"; } ?>[/code]60 was excluded … | |
Re: ie specific codes, once you discover what the fault is, "Some of the functions do not work well" is very difficult to debug [code]<!--[if IE 7]> <link href="ie7.css" rel="stylesheet" type="text/css"> <script type='text/javscript' src='ie7.js'></script> <div> special text</div> <![endif]--> along with <!--[if lt IE 5]> ie < 5 <![endif]--> <!--[if IE 8]> … | |
Re: [QUOTE=zoidmaster;1571017]The thread is kinda-sorta jumbled so I can't tell if its solved or not but you might consider using the z-index tag. Pretty much you can use that to layer everything one after the other. 1 is the lowest layer and the higher the number the higher in the stack … | |
Re: making a form does NOT mean someONE has to fill it thats what computers do, automate its just a post request populated from a list you just sit back and wait while the data flows in | |
Re: give the vanish/visible elements a higher z-index and opaque background, then when you display them they will fly over the other text, be readable, and vanish when closed [code=html]<script type="text/javascript"> <!-- (document.getElementById) ? dom = true : dom = false; function hideIt2(id) { if (dom) {document.getElementById(id).style.visibility='hidden';} if (document.layers) {document.layers[id].visibility='hide';} } … | |
Re: there is no debate, tables take too much code to display the same information, small is beautiful | |
Re: programming in the 70s, loading an entire business accounting app in 32kb, to leave 32kb for data, ram is ExPeNsIvE 'Hello World' was 16bytes, production code with no included commenting, it just didnt fit serial terminals, sharing a 9600bit data line keeping a months work, on a cassette tape in … ![]() | |
Re: css style [code=css] a:link {text-decoration:none; } a:hover { } a:active { } a:visited { }[/code]Rtfm Read the Fine Manual | |
![]() | Re: dont hate yourself, plenty of others will do it for you. :) |
With apologies to the author (whomsoever they may be), the email that included this article did not attribute it, and did not preserve the original, the emailer is not the author, merely forwarded it to the one person in their region identified as [B]the[/B] Australian, this is a very small … | |
Re: yes, take a screen shot and include it as an <img> | |
Re: keywords must relate to site text keyword farms, get blacklisted from se results | |
Re: [url=http://lmgtfy.com/?q=download+newsread+script+rss]Let me Google that for you[/url] |
The End.