8,966 Posted Topics

Member Avatar for student65
Member Avatar for ukndoit

[code] document.getElementById('email').value [/code] Gets the element by id, not by name. So add [icode]id="email"[/icode] to the input.

Member Avatar for parry_kulk
0
93
Member Avatar for rkumaram

Well, if it is used in the actual processing I consider it insecure. If it is additional handling and nothing of value is transmitted, note that users will still get a message from the browser that insecure content is being loaded. A lot of users will then abort.

Member Avatar for rkumaram
0
223
Member Avatar for jithusdani

SugarCRM does not yet support 5.3. If you really need to run it you may consider installing an older version of WAMP running 5.2.x

Member Avatar for pritaeas
0
65
Member Avatar for manishmannan

If there is indeed a slash in front of your file, it will be searched in the root of your drive, probably C:\common.inc.php. Remove the leading slash, to search in the current folder, or add a relative path to it.

Member Avatar for vaultdweller123
0
138
Member Avatar for wblakenc

[icode]$("#p").append("<tr>");[/icode] This will attach the tr tag to the paragraph with id p. Your next line is [icode]$("#p").append(...);[/icode] which does the same. It should read: [icode]$("#p tr").append(...);[/icode]

Member Avatar for pritaeas
0
507
Member Avatar for Siberian

Something like this ? [url]https://www.paypal.com/cgi-bin/webscr?cmd=p/xcl/rec/donate-intro-outside[/url] What is it you want to buy ? Made me curious...

Member Avatar for Ancient Dragon
-6
256
Member Avatar for kenneth_keillor
Member Avatar for gerhardjl

Do you want a component that does this for you, or do you want to build it yourself ? In the last case, you may want to have a look at windows regions. More info here: [url]http://www.efg2.com/Lab/Library/Delphi/Graphics/Algorithms.htm[/url] See about half way down the page, or search for "Hotspots".

Member Avatar for pritaeas
0
135
Member Avatar for cw08

Have a look at my solution in this thread: [url]http://www.daniweb.com/forums/thread208243.html[/url] It uses an array to store the popup window information. It works without the need of a delay.

Member Avatar for pritaeas
0
156
Member Avatar for Shanj

I've written a jQuery plugin that will highlight words on a page that are found on wikipedia. It could be a starting point for you. The check if a word is on wikipedia can be changed to check a word in a textfile. Adding a link to a word can …

Member Avatar for pritaeas
0
74
Member Avatar for disc

Do you have the following code at the start of your PHP code of every page ? [code] if (!session_id()) session_start(); [/code]

Member Avatar for cwarn23
0
187
Member Avatar for genieuk

My recommendation would be to pack all js scripts together into one file and include that one on every page. It would mean a bigger download on the first run, but on every next page, the scripts are taken from the browser's cache.

Member Avatar for almostbob
0
163
Member Avatar for GajananPund

What database, mssql ? What kind of encryption ? What are you trying to achieve ?

Member Avatar for GajananPund
0
90
Member Avatar for rukshilag
Member Avatar for infinitymedia
0
86
Member Avatar for Jellybaby

Basically, it's a word guessing game, which shows you which letters are correct in place, and which are correct but in the wrong place. 6 Letter words and 5 tries to get it right.

Member Avatar for Jellybaby
0
196
Member Avatar for c_Newbie

You mean something like this: [url]http://www.phpclasses.org/browse/package/2365.html[/url] You can start of with this, and then make it better. If you are looking to compare only java code files, then you can add some specific functionality, e.g. searching for function definitions.

Member Avatar for pritaeas
0
117
Member Avatar for ayesha789

I've used this: [url]http://www.1-4a.com/rename/[/url] But you can just search google for file renamer if you want another one.

Member Avatar for ayesha789
0
170
Member Avatar for sdzahed

What line is line 7 ? You can see if you choose to debug the javascript error in IE8. It will be the highlighted line.

Member Avatar for sdzahed
0
207
Member Avatar for marc84
Member Avatar for virtuemart
0
251
Member Avatar for MeTc123

Your webhost provides (ftp) access for you. You can use an ftp client to upload your files. If your host provides a control panel (e.g. cPanel) you can also use this web interface to upload your files.

Member Avatar for MeTc123
0
172
Member Avatar for genieuk

Could it be that the query is returning 4 rows, yet your code isn't displaying them all ?

Member Avatar for Atli
0
248
Member Avatar for Tess James

URL to view your code would be nice. Plus which element is not displaying right.

Member Avatar for Tess James
0
67
Member Avatar for muralibobby2015
Member Avatar for AdventDeo

I found the solution here: [url]http://www.rittau.org/blog/20061120-00[/url] Change the first line into: [code] var morerow=document.getElementById("tbl").getElementsByTagName("tbody")[0]; [/code]

Member Avatar for AdventDeo
0
158
Member Avatar for alexberr

it finds something if i search for "information". As far as i can see it is correct. You can see what is indexed for your site if you search google for site:valatinpromotions.com

Member Avatar for pritaeas
0
68
Member Avatar for Stefano Mtangoo

You can add another css change on the blur event: [code] $(document).ready(function(){ //make form display yellow color when mouse is focused on item $("input").focus( function(){ $(this).css('background-color' : 'yellow'); } ).blur(function(){ $(this).css('background-color' : 'white'); }); }); [/code] You can also use the toggleClass function, instead of changing the css in code.

Member Avatar for Stefano Mtangoo
0
140
Member Avatar for Shyloo

You should indeed check if there is a result before the while to catch this, like so: [code] $result = mysql_query("SELECT * FROM admin WHERE name ='shyloo'"); if ($result) { while($rs = mysql_fetch_assoc($result)) { echo "<tr>"; echo "<td>"; echo $rs['name']; echo "</td>"; echo "<td>".$rs['address']."</td>"; echo "<td>".$rs['tele']."</td>"; echo "<td>".$rs['comp']."</td>"; } } …

Member Avatar for rajabhaskar525
0
122
Member Avatar for poojashah

If you are checking two different values, shouldn't they both be in the sql ? Currently both fields are referring to $a.

Member Avatar for vaultdweller123
0
81
Member Avatar for bigjoke

You can start it using php.exe php.exe myscript.php Here is some more info: [url]http://php.net/manual/en/features.commandline.php[/url]

Member Avatar for pritaeas
0
191
Member Avatar for rouse
Member Avatar for fareast87

It appears to be a css solution. I think you can best copy the source of the page and start removing bit by bit the things you don't need.

Member Avatar for joyce69
0
117
Member Avatar for rajad2010

[QUOTE=rajad2010;1092958]i tried but get Parse error: syntax error, unexpected T_STRING in on line 90.[/QUOTE] [code] $xpath->query('//div[@class='details-subprice']') [/code]

Member Avatar for rajad2010
0
1K
Member Avatar for whitestream6

You want a different class for the even and odd rows ? Use a counter in the while loop (initialized by zero), and increment it at the end. You can then use: [code] $class = ($counter % 2) == 0 ? '' : 'alt'; [/code] and use $class in the …

Member Avatar for pritaeas
0
117
Member Avatar for indoreankita
Member Avatar for srinandini

You can just retrieve your news items from your database and feed them into a template, which will output your RSS xml. What language are you using ?

Member Avatar for Duleee
0
78
Member Avatar for Stefano Mtangoo
Member Avatar for Stefano Mtangoo
0
602
Member Avatar for veledrom

Use the full FromName so it contains the name and the email address in < > Hans Pollaerts <pritaeas@example.com> This fixed it for me. Try to conform to the standards as much as possible.

Member Avatar for rajabhaskar525
0
2K
Member Avatar for supuser

You should initialize $record before the loop, in case the query fails.

Member Avatar for rajabhaskar525
0
80
Member Avatar for mbirame

According to the specs it would be something like this: [code] $id = 1; // your person id for which you want to retrieve the notes $ch = curl_init("http://rattletree.highrisehq.com/people/$id/notes.xml"); [/code] You can find this example on the "Introduction" page.

Member Avatar for pritaeas
0
100
Member Avatar for GoGames1315
Member Avatar for Musab.Sust

According to this thread: [url]http://www.wampserver.com/phorum/read.php?2,41185,41191[/url] it could be a problem with the oci.dll. Try downloading the correct version, and replacing the one from wamp.

Member Avatar for phpbeginners
0
2K
Member Avatar for eduard77
Member Avatar for ablitz

I use a similar method for creating an rss feed. My solution is to extract only the first paragraph. If needed you could delete some or all tags from it (e.g. img).

Member Avatar for pritaeas
0
131
Member Avatar for sanishan

Am I correct, that you want to send a mass-email to your users (something like a newsletter), but you want to send only one, each time somebody visits your website ? Why not make an administration script to send the email to everyone at once, or per 100, 200 or …

Member Avatar for sanishan
0
84
Member Avatar for ruwanaru
Member Avatar for ruwanaru
0
167
Member Avatar for oluwafisayo

[icode]echo < < < ENDHTML[/icode] should be [icode]echo <<< ENDHTML[/icode] Second, Maybe it's a copy/paste issue, but you should use regular single or double quotes in php for strings, not backticks.

Member Avatar for SHARMA1
0
237
Member Avatar for onaclov2000

OpenID: [url]http://openid.net/developers/libraries/[/url] I've tried the PHP library, and the examples worked out-of-the-box.

Member Avatar for onaclov2000
0
145
Member Avatar for wonderland

An .htaccess file is designed to instruct apache what to do with certain requests. It is not for coding login forms etc.

Member Avatar for wonderland
0
103
Member Avatar for dasatti

Can you post a small piece of html to go with this, and a small explanation of what it is supposed to do ? It's hard to discover a flaw, without additional information.

Member Avatar for macneato
0
85

The End.