2,295 Posted Topics

Member Avatar for BlueCharge

[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

Member Avatar for ansaripk
0
101
Member Avatar for exotic_ang

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

Member Avatar for exotic_ang
0
81
Member Avatar for Pro2000

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

Member Avatar for Pro2000
0
162
Member Avatar for ellenwillss

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

Member Avatar for deew
0
78
Member Avatar for WigglesMcMuffin

post the code, all of it, properly, dont waste the time of people you want to help you

Member Avatar for WigglesMcMuffin
0
182
Member Avatar for lingoway
Re: 404

.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 …

Member Avatar for charlenej
0
80
Member Avatar for seahawk182

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

Member Avatar for diafol
0
211
Member Avatar for mangel.murti

[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 …

Member Avatar for almostbob
0
83
Member Avatar for slyme

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 …

Member Avatar for twiss
0
775
Member Avatar for jacksantho

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

Member Avatar for almostbob
0
207
Member Avatar for BlueCharge
Member Avatar for ankita.gupta17

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

Member Avatar for ankita.gupta17
0
105
Member Avatar for Sinderone
Member Avatar for zodiac19

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,

Member Avatar for almostbob
0
110
Member Avatar for wolveirne2005

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]

Member Avatar for almostbob
0
66
Member Avatar for think360studio

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' …

Member Avatar for twiss
0
146
Member Avatar for noahshoa2

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, …

Member Avatar for twiss
0
214
Member Avatar for extemer

already exists in your router firmware view source on your router admin page

Member Avatar for almostbob
0
69
Member Avatar for Fibinacci85

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

Member Avatar for almostbob
0
145
Member Avatar for suavedesign

[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 …

Member Avatar for suavedesign
0
168
Member Avatar for BlueCharge
Member Avatar for Quinterling

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 …

Member Avatar for Quinterling
0
364
Member Avatar for Sogo7

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

Member Avatar for Airshow
0
225
Member Avatar for extemer
Member Avatar for almostbob
-1
87
Member Avatar for Stefano Mtangoo

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 …

Member Avatar for Stefano Mtangoo
0
153
Member Avatar for Jessurider

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.

Member Avatar for teedoff
0
103
Member Avatar for accessnws

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

Member Avatar for almostbob
0
89
Member Avatar for sergent

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 …

Member Avatar for GunnerInc
0
184
Member Avatar for maxlipman

Then you have some work to do this is a help forum, not a do it for you forum, gets very tiresome

Member Avatar for Stefano Mtangoo
0
223
Member Avatar for chris_j_haines
Member Avatar for jrotunda85

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]

Member Avatar for almostbob
0
494
Member Avatar for Steven_B

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 …

Member Avatar for Steven_B
0
191
Member Avatar for web_develop

[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

Member Avatar for web_develop
0
187
Member Avatar for Whilliam

Old versions of firefox had a proprietary dom, new versions have a simliar dom to IE safari, just a way better implementation than IE

Member Avatar for almostbob
0
135
Member Avatar for Jessurider
Member Avatar for umeshMCA

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

Member Avatar for indiarajasthan
0
251
Member Avatar for bangla

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 …

Member Avatar for almostbob
0
206
Member Avatar for jack jastin

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 …

Member Avatar for indiarajasthan
0
480
Member Avatar for tadisaus2

agree with ps3 go to the google webmaster page and read the instructions there is a good discussion byu google on what works

Member Avatar for allex-alex
0
141
Member Avatar for maxlipman

any forum script, disable the forum, then the users can only pm to other users works with phpbb3

Member Avatar for Sorcher
0
143
Member Avatar for davy_yg

[url=http://lmgtfy.com/?q=configure+iis+for+php]Let me google that for you[/url]

Member Avatar for almostbob
0
152
Member Avatar for suavedesign

[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]

Member Avatar for Arkinder
0
108
Member Avatar for cliffcc
Member Avatar for cliffcc
0
108
Member Avatar for Joshua Kidd

[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

Member Avatar for almostbob
0
83
Member Avatar for vivekchandra

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 …

Member Avatar for almostbob
0
169
Member Avatar for vivekchandra

[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 …

Member Avatar for almostbob
0
122
Member Avatar for Jessurider

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 …

Member Avatar for almostbob
0
98
Member Avatar for mpc123
Member Avatar for veledrom

[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]

Member Avatar for MidiMagic
0
126
Member Avatar for Violet_82

<?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'> …

Member Avatar for brewbuff
0
200

The End.