2,295 Posted Topics
Re: [code=html]<div><img style='float:left'>bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla</div>[/code]styles of course belong in the stylesheet, and the images is not properly defined | |
Re: how are the boxes set is each separate or is one a child of another [icode]<div></div><div></div><div></div>[/icode] or [icode]<div><div><div></div></div></div></div>[/icode] it appears there is a border added to each successive box, makes me think it is something like the second (notsogood) sample | |
Re: 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 | |
Re: of course grammar syntax are enormously important, the site is the public image of the organisation, if the site is in error, the organisation behind the site is considered to be in error | |
Re: post the code, all of it, properly, dont waste the time of people you want to help you | |
Re: .htaccess error message [code=.htaccess]ErrorDocument 404 /notfound.htm[/code]a single line of text in the .htaccess file directing to a html/php/asp/whatever page[code=html]<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html><head> <meta name="Language" content="en-US"> <meta http-equiv="content-Script-Type" content="text/javascript"> <title>Oops File Not Found</title></head> <body style='margin:70px;'><p>MYSITE</p> <a href='http://www.mysite.com'>©Mysite</a> <p>Oops:<br> File not found<br> The requested resource or page … | |
Re: look at wordpress, blog, forum, software many of the premade scripts have this feature, admin/registered areas that modify the page within preset limits by a web interface, adjustable to user levels ![]() | |
Re: [code=php]$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 }[/code] ignore this, was experimentig with the code and clicked … | |
Re: given that the data is in the fields and the format is known, why submit preview could be a layer in the current page with the correct css to display the information as it appears in the database something like [code=php]<input type='button' value='Preview' onclick="document.getElementbyID('preview').style='display:block;'"> <!-- and --> <div id='preview' style='/*out … | |
Re: at least it means your host is using php5.3 (>=5.27 anyway) the handling of round() was altered to comply with some standard [url]http://php.net/manual/en/function.round.php[/url] [code=php]echo round($Worksheet->Cells->Item($i,2),0,PHP_ROUND_HALF_UP);[/code] 'standards' is not intuituve, behaves WRONG | |
Re: the google search is "google search api" | |
Re: post the code you have created, nobody will help unless you show evidence of attempt & its a lot easier to change old code than write new code | |
Re: then when you have a datepicker google for php mail() | |
Re: the code to the login scritps for facebook is [url]http://developers.facebook.com/docs/[/url] all the conventional popups login, like, registration not an iframe, | |
Re: 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 [code=php]if(date('m',$project_date)==date('m')) { /* bla bla bla */}[/code] | |
Re: when declaring a pseudo state, declare the default state or the state may not reset, on poorly compliant browsers (~75% use the poorly compliant browser, it came preinstalled) assuming the image is a child of the link, the simplest way to work it [icode]<a href='something'>link text <image src='something' alt='something else' … | |
Re: http_referer is not a dependable resource, its is not sent by all browsers $_GET is an array not a command, it is populated from the referring page before any other code redirects MUST be before any output [code=php]<?php if(!isset($_GET['url'])) { if(isset($_SERVER['HTTP_REFERER'])) { header("Location: $_SERVER['php_self']?url=$_GET['url']");} }[/code]checks that 'url' is not set, … | |
Re: already exists in your router firmware view source on your router admin page | |
Re: I have in use a php sql freeware script coppermine photogallery, [url]http://www.coppermine-gallery.net[/url] only because I didnt need any other of wordpress's features, if there were to be any input other than photos, captions, it's in wordpress | |
Re: [quote] am having a little trouble with sound on mouseover in my website, if anyone can help, I'd greatly appreciate it. The link to my site is [url]www.trecall.com[/url]. There are two menus, and each menu has a different sound that supposed to be heard on mouseover.[/quote]dont do it, sounds are … | |
Re: what if they chose a signature that is more than 100px, do you clip | |
Re: slopes works on my pc, no javascript so it is a css menu, triggered on the :active psuedo state instead of the :hover pseudo state the html is just text, the smarts is in the css something that operates on focus, on an element id inside a containing element re-examine … | |
Re: clinetside=insecure passwords can be md5 hashed and only the md5 is sent to the browser, to be compared with a generated md5 of what the user enters, it can always be spoofed I agree with twiss impossible | |
| |
Re: set your editors NOT to produce html, but some other, of the many kinds of enhanced text like bbcode that is used to add [noparse][b][/noparse][b]bold[/b][noparse][/b] [/noparse] code highlighting and text effects in these forums, daniweb, thats why alternate forms exist the script handles the code and produces html, there is … | |
Re: there is no doctype declaration in the html without a doctype the browser is free to interpret the code any way it chooses, each browser, and each version within each browser, has its own default doctype to use. | |
Re: php works on the server, javascript on the client, javascript cannot communicate with a php script without submitting something to the server, (perth to NewYork without a phone call??) its not possible to accomplish the [U]appearance[/U] of not submitting or getting something follow Zero's direction and examine ajax | |
Re: the dis-assembler does not produce the same highlevel source code you had before you ran the assembly language compiler it produces an intermediate opcode equal to each byte sequence within the exe the traditional hello world program, is [code=asm];"hello, world" in assembly language for BeOS ; ;nasm -f elf hello.asm … | |
Re: Then you have some work to do this is a help forum, not a do it for you forum, gets very tiresome | |
Re: or if using multiple directory structures [code=php]<?php define('_path','../../');//example only it would be different for each folder include(_path.'menu.php');?>[/code]and each item in the menu file also references the path [icode]<a href='<?php echo _path; ?>/downto/thisfolder.htm'>thisfolder</a>[/icode] | |
Re: its easier to store unmanipulated unformatted data, if the small local american site becomes a large global site there is less recoding of rigid code the database is smaller by 2bytes, not a big thing for 10 records a big thing for many fields of millions of records a datetime … | |
Re: [url]http://www.w3.org/TR/i18n-html-tech-bidi/[/url] the standard, resorts element order, so the menu buttons should adjust, home will become first on right, in rtl languages, and first on left in ltr languages | |
Re: Old versions of firefox had a proprietary dom, new versions have a simliar dom to IE safari, just a way better implementation than IE | |
Re: both are excellent in 1985 css is the current best practice for layout | |
Re: Google have a huge section on good webmaster practices, for onsite SEO, what google considers bad practice for offsite SEO Read the guidelines, Do not do any 'black hat' proceedures, its much harder to get back into indexes than it is to get in the first time | |
Re: because google analytics depends on javascript and an external server, it is blocked by much ant-spyware, particularly the [url=http://winhelp2002.mvps.org/hosts.htm]MSMVP Hosts file[/url], and does not record accurately there are several php sqsl/flatfile trackers that act solely on your server so are not blockd I like [url=http://www.bbclone.de/]bbclone[/url] for limited hosts, or use … | |
Re: Google, are in the dictionary, web search, carry over 75% of all search traffic, and because of this overwhelming presence, Google make [url=http://www.google.com/webmasters/]"the rules"[/url], follow the rules Content is King, xml sitemap properly valid html xml css 24hour magic sites, get blacklisted link exchange farms, get blacklisted SEO [I]tricks[/I], get … | |
Re: agree with ps3 go to the google webmaster page and read the instructions there is a good discussion byu google on what works | |
Re: any forum script, disable the forum, then the users can only pm to other users works with phpbb3 | |
Re: [url=http://lmgtfy.com/?q=configure+iis+for+php]Let me google that for you[/url] | |
Re: [code=css].container { width:100%;text-align:center; } .cc_menu{ font-size:14px;text-transform:uppercase;color:#fff; overflow:hidden; }[/code][code=html]<div class='container'><div class='cc_menu'> menu </div></div>[/code] | |
Re: [code=php]<?php //bla bla bla $airtype = array("clr" => "clearance","twr" => "tower", "gnd" => "Ground", "dep" => "departure"); //etc echo $rows['airport']." ".$airtype[$rows['type']]; ?>[/code] pulls the value from another array, perhaps | |
Re: 0px is deprecated, zero is dimensionless, 0px puts compliant browsers into quirks mode and may be causing problems 1px <> 1em <> 1% <> 1pt <> 1in <> 1cm <> 1apple 0px = 0em = 0% = 0pt = 0in = 0cm = 0apple and is written 0 for validation … | |
Re: [code=php]header("Content-type: $contenttype"); //to ensure the receiving pc can display the developed page in the correct way, the content type may be different for each object pulled from the database header("Content-type: image/png"); //to ensure the receiving pc can display the developed page in the correct way, the normal content type for … | |
Re: properly declare a doctype >4 and css positioning works ie::html 4 4.01 5 xhtml1 [code=html]<!DOCtype html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <style type='text/css'> .fixtop { top:0;right:0;position:fixed;z-index:-100; } .fixbottom { bottom:0;right:0;position:fixed;z-index:-100; } </style> </head> <body> <body topmargin="0" leftmargin="6"> <img src="C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Sunset.jpg" width="1024" height="126"> <body … | |
Re: [url=http://lmgtfy.com/?q=How+do+people+set+an+image+as+background+and+that+image+covers+whole+background+whatever+the+browser+and+OS+platform+is]let me google that for you[/url] | |
Re: <?php if (isset($_SERVER['HTTP_REFERER'])) { echo "<a href='$_SERVER['HTTP_REFERER']'>back</a>"; } else { echo "<a href='javascript<b></b>:history.go(-1)'>back</a>"; }?> Will take it back or make the url on the link that submits the form include $_server['PHP_SELF'] as part of the array and redirect to the value passed to the form handler example <form action='fred' method='post'> … ![]() |
The End.