almostbob 866 Retired: passive income ROCKS

Yes, it was considered an advantage to have left handed riflement, to be easily able to watch the arcs on the other side.
spiral staircases in medieavl castles, are likewise, orienmted for the better protection of right handed defenders, wield ing a sword, than for right handed attackers.
there is a significant body of discussion on handedness in the military, junior offr are taught to maximise the potential of their backhnaded troops

almostbob 866 Retired: passive income ROCKS
CREATE  FUNCTION `get_poi_distance`(plong float,plat float, rowlong float, rowlat float) 
RETURNS float
BEGIN
DECLARE distance float;	
set distance :=(3958*3.1415926*sqrt((plat-rowlat)*(plat-rowlat)+cos(plat/57.29578)*cos(rowlat/57.29578)*(plong-rowlong)*(plong-rowlong))/180);
RETURN distance ;
END$$

likely a paste-in error, copying from editor to the codehandler on the page, posting a pretty tight code

almostbob 866 Retired: passive income ROCKS

ie specific codes, once you discover what the fault is, "Some of the functions do not work well" is very difficult to debug

<!--[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]> ie 8<![endif]-->
<!--[if gte IE 8]> ie > 8 <![endif]-->

IE in quirks mode AAAAAAAAAAAAAAAAAAAGGGGGGHHHH

almostbob 866 Retired: passive income ROCKS

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 it is.

For a reference look at the layout of the layers used in my website

-infinity < z-index < +infinity, default 0
much broader range than expressed, with an appropriate number of discrepancies in IE handling (as always)

almostbob 866 Retired: passive income ROCKS

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

almostbob 866 Retired: passive income ROCKS

if phpinfo() produces a screen full of data, examine the include file, if there is a missing ; missing ?> missing anything, the expected output may be lost so the menu is not appearing
not likely, but the errors as they are occuring are not likely

or

<?php if(!isreadable("php/functions.php")) {echo 'cant find include file';} ?>

is the file readable given the filespec, if errors are off the include would fail without notice
./php/
php/

almostbob 866 Retired: passive income ROCKS

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

<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';} }
function showIt2(id) {
if (dom) {document.getElementById(id).style.visibility='visible';}
if (document.layers) {document.layers[id].visibility='show';} }
--></script>
<a id="show" href='#' onClick="showIt2('hide');">SHOW</a>
<div id="hide" style="position:fixed; top:20px; left:10px; width:45%; visibility:hidden; padding:10px; margin:10px; background:#ececec; border: 1px solid; z-index:100;">talk bla bl bl stuff this that</div>
<button id="frm" onClick="hideIt2('hide');">Close</button></span>

I know, get the css out in the css file :)
I know, 2 DOM types is almost redundant but there are still old versions of firefox out there :P
the script will show or hide any element by its id, reusable

almostbob 866 Retired: passive income ROCKS

just finished reading a part of the msdn technet on migrating to asp.net
no wonder the dinos think its too hard

almostbob 866 Retired: passive income ROCKS

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 between user and server
htmlspecialchars causes those characters to be replaced by the escape code of the character, and the request passes all the dumb servers in the path and is accepted
here is a link to the operation of htmlspecialchars, I LIKE the animated bit
http://lmgtfy.com/?q=http%3A%2F%2Fphp.net%2Fmanual%2Fen%2Ffunction.htmlspecialchars.php&l=1

almostbob 866 Retired: passive income ROCKS

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

almostbob 866 Retired: passive income ROCKS

in css instead of bothering with tables, and having each table cell alter in size by screen resolution, text size, window size, user preference,
you can tell the browser to make eg, a logo, 25% wide 25% high translucent and sit behind the text
have a footer sit at the bottom of the page, regardless of page height (see below) popup displays when you mouseover(image at left of post) or click an object(the arrows above right of post), far better than the alt text usually associated, with images
and other elements resizing to suit the full range of display screens and window sizes from telephones 200*200, to the 8 foot wall projection I get to play with after hours,

from the first tutorial lesson its always an "AHA moment" you can always find another way to use what is essentially a very simple set of rules

almostbob 866 Retired: passive income ROCKS

css positioned block elements,
css styled appearance
<div> <p>
smaller faster more consistent display over multiple pages
easy debug, maintaining a site with table layout pages is tedious
tables are just bad practice, if you are learning, stay current

would even go so far as to suggest installing netbeans, or another IDE that includes current best practice
If you prefer to work on your own a code highlighting editor like notepad++ or notepad2

good editors use code highlighting to indicate mismatched elements far better than any indenting can

almostbob 866 Retired: passive income ROCKS

stop
do not use tables,
go do www.w3schools.com and do some tutorials on the right way to layout your page

almostbob 866 Retired: passive income ROCKS

and when you program anything in html5
>75% of users will not be able to access it, provide a html4/xHtml compatible alternate method

almostbob 866 Retired: passive income ROCKS

css style

a:link {text-decoration:none; }
a:hover { }
a:active { }
a:visited { }

Rtfm
Read
the
Fine
Manual

almostbob 866 Retired: passive income ROCKS

dont hate yourself, plenty of others will do it for you. :)

almostbob 866 Retired: passive income ROCKS

Why is Google having trouble scanning my sitemap? I'm running my blog on Tumblr and Tumblr generates a sitemap for you.

have you checked the sitemap that tumblr generates
if its not valid xml it will downgrade the site rating
have you submnitted the sitemap to google
If you dont do it yourself, you cant trust the doing

almostbob 866 Retired: passive income ROCKS

browser?

almostbob 866 Retired: passive income ROCKS

Everybody has a barbie, & there are free ones in every public park,
stick,, thats impoortant and ya cant be without it even long enough to pick up a new one
tourist killed australia
Come to Australia, You might just avoid getting killed
Australia, Where the bloody hell are you,, buried

almostbob 866 Retired: passive income ROCKS

I like to think that I am a 'practising christian'.

How long do you have to practice before you get it right??

well it is a joke thread, send all compaints to the moderators by clicking the "flag Bad post" button at left

almostbob 866 Retired: passive income ROCKS

a magic invisible friend who lives in the sky, & talks to you inside your head
others have different magic invisible friends who live in the sky and talk to them inside their heads
each magic invisible friend tells their corporeal friends that they are the only magic invisible friend who lives in the sky

Most can be treated with psycho drugs, counselling
you can be normal
good luck with the treatment
yours appears to be working, you have taken steps toward rational thought

Salem commented: Nice +0
diafol commented: :) +0
almostbob 866 Retired: passive income ROCKS

this is a link to the howto page for Kooltabs, the tab system in your page http://doc.koolphp.net/Controls/KoolTabs/Javascript/KoolTabsItem_Class/index.php
you can then configure it in anyway you like

almostbob 866 Retired: passive income ROCKS

yes, take a screen shot and include it as an <img>

almostbob 866 Retired: passive income ROCKS

Its doing precisely what you told it to
#container min-height:100% height:100%
plus the size of the footer

remove the height statements, they are redundant anyway

almostbob 866 Retired: passive income ROCKS

the DOM you dont recognize is for early netscape & mozilla based browsers,

good practice to support everything, especially when its only a single line of conditional code
belt and braces, versions of mozilla based browsers(firefox) for linux BEOS etc do not support getelementbyid
in a few computer centuries (months), such support will be unncessary, but till everybody uses the same windows12 and ie33, , ,
its good practice to ensure compatibility with other OS/browser combinations
link <-- humor I enjoy the animation

almostbob 866 Retired: passive income ROCKS

keywords must relate to site text
keyword farms, get blacklisted from se results

almostbob 866 Retired: passive income ROCKS

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 your pocket
'graphics' what is graphics, the lower 128 ascii characters, thats all there is
remote admin, by 300baud dialup, forget page refresh
need a language,, author the language before you use it to write the app

Used to get such a sense of satisfaction from getting it to do anything at all, that you almost didnt notice that it would have been faster to do it with a pencil
ascii art

almostbob 866 Retired: passive income ROCKS

floatval() is to convert the text variable to a numeric <form method=get action="Grade.php"> should be <form method='get' action="Grade.php"> dependant on html doctype used, it makes a big difference

almostbob 866 Retired: passive income ROCKS
<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;">
<button id="form1" onclick="hideIt('layer1');">Close</button>
<br>lorem ipsum bla bla bla bla bla bla bla bla lorem ipsum bla bla bla bla bla bla bla bla bla bla bla lorem ipsum bla bla bla bla bla bla bla bla lorem ipsum bla bla bla bla bla bla bla bla lorem ipsum bla bla bla bla bla bla bla bla lorem ipsum bla bla bla bla bla bla bla bla<br>
<button id="form" onclick="hideIt('layer1');">Close</button></div>

multiple divs can be hidden.shown by their id
styling belongs in the stylesheet, this sample is not optimal

almostbob 866 Retired: passive income ROCKS

take the positioned footer outside of any other container, else it is position relative to the container, not the screen

<div id="container">
<div id="main">
<div id="terms">// content
</div> // closing terms 
</div> // closing main
</div> // closing container
<div id="footer"> content </div>
almostbob 866 Retired: passive income ROCKS

show the code used to call the file,
is ?n1text=60 in the link
is $_get the right array, $_post $_request ?

almostbob 866 Retired: passive income ROCKS

try

<?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"; } ?>

60 was excluded in the op, > 60 or < 60, no =60

$a is likely being treated as text, by convention all the request arrays are parsed as text, so the original value may be interpreted as "60"

almostbob 866 Retired: passive income ROCKS

you posted an anonymized link, nobody in their right mind will click it, the google search would be "drive by spyware"
Post the code

almostbob 866 Retired: passive income ROCKS

these standard test beds may assist you http://analyze.websiteoptimization.com/authenticate.php?url=http://allsaintsurc.webs.com/webproject/& Speed

http://validator.w3.org/check?uri=http%3A%2F%2Fallsaintsurc.webs.com/webproject/&charset=%28detect+automatically%29&doctype=Inline&group=0 html check, minor faults, XHTMl requires lower case keys

http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fallsaintsurc.webs.com/webproject/&profile=css21&usermedium=all&warning=1&lang=en CSS check, all good

http://demo.opera-mini.net/demo.html?allsaintsurc.webs.com/webproject/ handheld , the potential results of css @media handheld { } , very difficult to read as is

http://browsershots.org/http://allsaintsurc.webs.com/webproject/ valid only 24 hours
http://www.browsershots.org other browsers, a little buggy

many problems (if present) will show
serious code errors in the w3c validator sites will produce blankscreens in browsershots

Valid code does not ensure the site will work ...
Invalid code ensures the site will not work ...
.. in all browser OS combinations

not all layouts work in handheld devices
strictly code based, you understand your content more than I would

almostbob 866 Retired: passive income ROCKS

post the code

almostbob 866 Retired: passive income ROCKS

what do you call a deer with no eyes and no legs
still no idea

almostbob 866 Retired: passive income ROCKS
<div><img style='float:left'>bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla</div>

styles of course belong in the stylesheet, and the images is not properly defined

almostbob 866 Retired: passive income ROCKS
$tcnt = 0;
$file = fopen("/home/uploads/date/".$list."_".$Type.".txt", "r") or exit("Unable to open file!");
$file_rl = $file;
while(!feof($file)) {
$lineq = fgetcsv($file,, "|"); 
if($tcnt==0){ $head=$lineq;
foreach($lineq as $fields){ //echo $fields.",  ";
echo "<pre>";
print_r($fields);
}
}
else{ // insertion code goes here
}

ignore this, was experimentig with the code and clicked post

almostbob 866 Retired: passive income ROCKS

create an xml sitemap, google will show you why, I use the generator at http://www.auditmypc.com
get a google webmaster account, google will show you why
verify your account, google will show you how
submit the sitemap, not any page

almostbob 866 Retired: passive income ROCKS

This is difficult, I dont have thoughts often enough to post one a day

almostbob 866 Retired: passive income ROCKS

thats easier, I thought you wanted them all to adjust
to make one column absorb all the width of the 100% make the first cell in that column <td width='*'>content</td> it should then occupy the entire table except for the width actually used by the other cells

ko ko commented: Nice post @almostbox. You are master with table. It is appreciate for me too. I am still stupid in table. :) +6
almostbob 866 Retired: passive income ROCKS

rephrased,
to the limits of the table size which in this case is set to full window width (100%)
if you want the whole table to adjust, remove the width statement from the table declaration and each column will adjust to its widest content
tables do not work that way, the column is the width of the widest cell in the column, the row is the height of the highest cell in the row,
the table is a collection of squares, even if the cell in column1 row3 is 3characters wide
column one, and therefore all the cells within in will be the width of the cell in column1 row4 which is 40 characters wide
the column or row fits 'tightly' around the largest column,

examine style text-align:right; on the columns containing the names

almostbob 866 Retired: passive income ROCKS

tables dont work that way
tables present tabular data in tabular form, SQUARE
the column is the width of the largest cell
the row is the height of the largest cell

If you dont want a square layout, dont use tables

almostbob 866 Retired: passive income ROCKS

at least it means your host is using php5.3 (>=5.27 anyway) the handling of round() was altered to comply with some standard
http://php.net/manual/en/function.round.php

echo round($Worksheet->Cells->Item($i,2),0,PHP_ROUND_HALF_UP);

'standards' is not intuituve, behaves WRONG

almostbob 866 Retired: passive income ROCKS

not applied to table cells
applied to tables, divs
block level elements only

get off your *** and read at least part of the instructions for what you are doing

almostbob 866 Retired: passive income ROCKS

the code to the login scritps for facebook is http://developers.facebook.com/docs/ all the conventional popups login, like, registration
not an iframe,

almostbob 866 Retired: passive income ROCKS

the google search is "google search api"

almostbob 866 Retired: passive income ROCKS

then when you have a datepicker google for php mail()

almostbob 866 Retired: passive income ROCKS

show the html then, & lets get debuggin

almostbob 866 Retired: passive income ROCKS

referring to , , , there is no mention of a date field in the data,...
call it $project_date assuming its somewhere in the $projects array stored as a 4bit timestamp

if(date('m',$project_date)==date('m')) { /* bla bla bla */}