2,295 Posted Topics
Re: na its just an <a href='mailto ..... link, most people use a php mailer, even from one user to another, so they can keep a record of what is sent great way to gather addresses for later mailouts the standard for mailto allows the link to fill in certain defaults … ![]() | |
Re: google do not have server delays they have a large server system, scattered over most countries, with a very fast return time | |
Re: do any of the database columns, if any used, or any other imported data include characters that when parsed could trick the parser into displaying this error if an unsanitized data field included a ';' it may cause such an error | |
Re: a 380K bmp, its huge, and at 2160 screen width, it pixellates '[i]remarkably[/i]' looking at the image in the cache its about 150*125 repeat-x, if you cut just one tile of the background image and styled the div as background:url('sliced-pig.jpg') repeat-x; and wrote yellow times-roman 3em text over it | |
Re: stop using pixels, fixed measurements screw up as window or screen size changes current best practice for dimensioning are em or % relative scalars that auto adjust to screen size window size and user preference | |
Re: every view of your page copies the entire html into the browser cache, that is how html works a) [icode]© me[/icode] b) you can't | |
Re: [icode]ul#top-nav li#home { background: url(../images/button-home.png) no repeat; width:44px;[/icode] wrong [code=css]ul#top-nav li#home { background: url('../images/button-home.png') no-repeat; width:44px; }[/code] don't use px, no fixed measurements, creates problems[indent]--makes the page push offscreen (creates horizontal scroll bars, users do not scroll sideways, mice do not have hscroll wheels, users leave), on small displays --makes … | |
Re: apache mod_rewrite, applied in the .htaccess files can display mysite.com/page.php?id=310 as mysite.com/page310.php , or any other system you wish to set up and the urls are 2way, so they can access page310.php as a typed url the search for instructions would be something like [url=http://lmgtfy.com/?q=apache+mod_rewrite+friendly+urls] [b]THIS[/b] [/url], (love that animation, … | |
Re: [code=sql]SELECT *,(((acos(sin((".$lat."*pi()/180)) * sin((`lat`*pi()/180))+cos((".$lat."*pi()/180)) * cos((`lat`*pi()/180))* cos(((".$lon."- `lon`)*pi()/180))))*180/pi())*60*1.1515) AS dist_x FROM `message` HAVING dist_x<=".$distance." AND dist_x<=$distance ORDER BY dist_x ASC limit 1"[/code] | |
Re: yes, edit, gday ardav, & 'scuse me hadnt seen the prior answer | |
Re: Matricol, typing slowly just for you,, no mention of replacing end tags was made, you appear foolish Svmr browsers display differently some add a space where there is a carriage return in the source, some do not, better to ensure the space with a [i]no-break space[/i] as written by vibhadevit … | |
Re: welcome to the 1990s ?? you have missed all the techniques of the last 20 years DONT DO IT STOP DOING IT slicing the web page does not speed it up slicing the web page slows it down each chunk of the sliced image adds another http request to the … | |
Re: there are four methods of [url=http://www.google.com/support/webmasters/bin/topic.py?topic=8469]google verification[/url] [list][*]a code to embed in the head of the index page[*]a filename to create in the root folder[*] a dns record[*] analytics tracking code[/list] the op has received the second create a file in the root folder with that name, it does not … | |
Re: [QUOTE=kurtopia;1587964]echo " <font color='red'>Category exists, process halted...</font><br /> this one also has no semi-colon[/QUOTE] perhaps you should read to the end of the line, 28 in the source its not wrong, just badly formatted | |
Re: php versioning error ?? the new host has a later version of php than the old host there is nothing getting $email $name $tour_link from the $_post array version>php5.20 shouldnt they be declared somewhere[code=php]$email=$_post['email']; $name=$_post['name']; $tour_link=$_post['tour-link'];[/code]or refer directly to the _post array value | |
Re: [code=php]$euros = $_POST['euros']; $cents = $_POST['cents']; if(is_numeric($euros) && is_numeric($cents)) { $salary = $euros + ($cents / 100); } else die('non-numeric inputs');[/code] oneline code[code=php]isnumeric($_POST['euros']) && isnumeric($_POST['cents']) ? $salary=$_POST['euros']+($_POST['cents']/100):die('non-numeric inputs');[/code]salaryfl;oat appears unneccessary | |
Re: just css absolute positioning of the div that contains the menu, and >0 z-index to allow other content to slide under a background set with the little triangle for the active choice all in css its a pisspoor implentation using javascript addons that are not neccessary, parts of the menu … | |
Re: Content, is the greatest factor, but there has to be someone linking to it, the most important idea is not much good unless its knkown about goto the google webmaster tools page read & follow the instructions Google appear to have a pretty good idea, about what search engines expect,, … | |
Re: your current code, show it, it is easy to add a column to the user table & use the same script that is used to verify the user at login, to get the random number or create another table for the id and number the same table for a single … | |
Re: any of an unlimited number of $session variables set in the page you wish to link from, search for in the page you wish to land on | |
Re: [icode] href=\"./admin/login.php\">Login </a>\n";[/icode] ?? | |
Re: why not [url=http://lmgtfy.com/?q=php+encryption+tutorial]google it:: php encryption tutorial[/url] | |
Re: create an xml sitemap, [url=https://www.google.com/webmasters/tools/home?hl=en]google[/url] will show you why, I use the generator at [url]http://www.auditmypc.com[/url] get a [url=https://www.google.com/webmasters/tools/home?hl=en]google webmaster account[/url], [url=https://www.google.com/webmasters/tools/home?hl=en]google[/url] will show you why verify your account, [url=https://www.google.com/webmasters/tools/home?hl=en]google[/url] will show you how submit the sitemap, not any page | |
Re: [QUOTE=Steven.Matrix;1575763]Hmm 3-6 months is a lot of time don't you think so? and how do you get backlinks from? Can you give us some tips?[/QUOTE]go to the google webmasters page. read, and follow the only tips that actually matter. google make the rules, everyone else follows. As CFred wrote :" … | |
Re: the error is not in the code suplied php runs on the server, this code must be ok as it works show the code of the upload form page, likely one of IE's document quirks has been triggered by that form | |
Re: an iframe is simple html [url=http://lmgtfy.com/?q=html+iframe] let me google that for you [/url] it is considered to be extremely bad form, theft of bandwidth, theft of information, to embed someone else's content in your site without consent, ask first most sites have a framebreaker embedded to stop theft such as … | |
![]() | Re: [icode]<?php if($heartrate > 100) {die('this rant is gaining too much life of its own');} ?>[/icode] :) thoughts, does not work right in more than half of user browsers, using windows and IE <=8, browser fault not code fault, so it isnt good to rely on it requires a larger page … ![]() |
Re: is it your server, localhost, or does the provider host/set the ram size regardless of your .ini settings uploaded files = 5MB , undergoing manipulation = upto 5MB, output files if all are in memory at the same time could cause problems if the host set a lower memry limit … | |
Re: 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 … ![]() | |
Re: I tend to use lockouts on correctly set items [code=php]if isset($_post['day']) { echo "<input type='text' name='day' disabled='disabled' value='$_POST['day']'>"; } else { echo '<select name="day" id="day">'; for ($day_nam = 1; $day_nam <= 31; $day_nam++) { echo "<option value='$day_nam'>$day_nam</option>"; } echo '</select>'; }[/code] havent tested the code, just an option | |
Re: ok without name callingfor making this post, there is [B][U]NO[/U][/B] possibility that the request from 2 different machines even if they are in the same room on the same router, took the same path to the server, the absolute impossibility that any person pushed the send key at the same … | |
| |
Re: your urgency (10) + a-hole factor (-100) = coffee break and a healthy kmacyoyo [url=http://lmgtfy.com/?q=matlab+for+3-D+wavelet+transform+in+image+compression]let me google that for you[/url] | |
Re: thanks stbuchok, dumped in my hintslist edit, that bob, <== dumb as a stump ^this^ should have been in the kudo tag | |
Re: [url]http://php.net/manual/en/function.file-get-contents.php[/url] [icode]echo file_get_contents(urlencode('url'));[/icode] thats the generic, if there are no special characters in the url [icode]echo file_get_contents('url');[/icode] | |
Re: its not an image, its a css style | |
Re: error, mixture of get and post $_get['edit-id'] is blank when the form is posted, so the querey expands to [icode]$query = "UPDATE rates SET `datefrom` = '".$_POST['datefrom']."', `dateto` = '".$_POST['dateto']."', `ratename` = '".$_POST['ratename']."', `single` = '".$_POST['single']."', `double` = '".$_POST['double']."', `child` = '".$_POST['child']."', `infant` = '".$_POST['infant']."', `base` = '".$_POST['base']."' where 'nonexistent … | |
Re: use premade scripts for ideas sometimes the mistakes give the best information on how not to do it continue to describe your site as you are, "I dont want to copy"... then if it does take off there can be less bite back from other sites legal dept. the next … | |
![]() | Re: [icode]margin:0; [/icode] and or [icode]padding:0; [/icode] nothing in your css overrides default spacing, the manual, the online docs, at w3.org are very good, dont have the full link rattling round the empty space on my neck |
Re: [code=sql]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$$[/code]likely a paste-in error, copying from editor to the codehandler on the page, posting a pretty tight code | |
Re: do some tutorials at w3schools, there are some code errors on the site but the code works, they arent affiliated with W3.org then think of what you want to do, and google for the code samples, then edit them and make the samples exactly your own html is not enough … | |
Re: perhaps step through the list of contractions to make them all the full name, then remove duplicates,something like [code=sql]UPDATE TABLE set CITY=replace(CITY, 'Ft.', 'Fort') UPDATE TABLE set CITY=replace(CITY, 'Ft', 'Fort') UPDATE TABLE set CITY=replace(CITY, 'Bnd.', 'Bend') UPDATE TABLE set CITY=replace(CITY, 'Brg.', 'Burg')[/code] not a tested code, it may be neccessary … | |
Re: if you look at the speed report for any site, I use one at [url]http://websiteoptimization.com/services/analyze/[/url] , you can see why sprites are pouplar in the table that shows overheads icon might be 100bytes, but there is ~220bytes in the http to download it, more overhead than content sprite with 2 … | |
Re: 1, what problems, precisely,, ^^ already ask that, sorry 2, a picture is useless, post code, between [noparse][code=language] [/code][/noparse]eg code=css code=html code=php tags | |
Re: print the contents of the _post array, just to ensure they are what you expect, sometimes the error is not where you expect ![]() | |
Re: you could fix your database design by a tableupdate now, and store only a timestamp, use 4bytes per record instead of 35, require simpler code to select records, simpler code to update the table, simpler code to display allow any user to have the date and time formatted to their … | |
Re: functioning[code=javascript]<input type='button' name='logout' value='logout' onclick= "window.location='http://localhost/Catalogue/php/logout.php';">[/code] does anyone else notice anything unusual about php href, running on the wamp localhost [code=php]<?php include 'C:\wamp\www\Catalogue\php\menu.php'; ?>[/code]hint:[code=php]<?php include('File:///C:/wamp/www/Catalogue/php/menu.php'); ?> <?php include('http://localhost/Catalogue/php/menu.php'); ?>[/code] both work :) | |
Re: q1 my magic crystal ball allows me to see what you have done, and point there, in your code..... English translation:: Post your select statement, at least, between [noparse][code][/code][/noparse] tags, and perhaps a description of the column names, q2, well actually you were told wrong [url]http://www.postgresql.org/docs/9.0/static/sql-select.html[/url] WHERE somecolumn SIMILAR TO … | |
Re: Just in case you don't like twiss's response, [url=http://lmgtfy.com/?q=form+creation+and+validation+tools] let me google that for you[/url], |
The End.