8,966 Posted Topics

Member Avatar for alex.blanc.52
Member Avatar for pritaeas
0
182
Member Avatar for aabbccbryanmark
Member Avatar for JamesCherrill
0
128
Member Avatar for keven.pirritano

You can use `$('select').change()`. If you show what you have so far, we can point you in the right direction.

Member Avatar for pritaeas
0
214
Member Avatar for hemalatha.nambisan
Member Avatar for pritaeas
0
132
Member Avatar for <M/>

Sounds more like some rogue CSS rule that's messing it up. Use your browser's developer tools to find out what causes it.

Member Avatar for pritaeas
0
123
Member Avatar for vishalonne

$("select").change(function () { }); This code is executed for each select box. Unfortunately, the change is also triggered when you first load the page. If you want to target a single select box, then use something like this: $('#hotel1').change(function() { });

Member Avatar for pritaeas
0
368
Member Avatar for AmieCutie

var rootNodeName = pageXmlData.nodeName; xmlStr = '<?xml version="1.0" encoding="utf-8"?>\n<'+rootNodeName+'>'+convertHtmlToXml($('#main-editor'))+'\n</'+rootNodeName+'>'; Both lines only use the root name, no attributes are specified.

Member Avatar for AmieCutie
0
153
Member Avatar for kanijsharme
Member Avatar for <M/>
0
63
Member Avatar for jtodd

Microsoft has a [Migration Assistent](http://www.microsoft.com/sqlserver/en/us/product-info/migration.aspx) available to help you port your SQL Server 2003 to 2008 (R2).

Member Avatar for tsmorris
0
249
Member Avatar for SaaDwTk
Member Avatar for yoyo12345
Member Avatar for Arjun_Sarankulu
Member Avatar for rayidi
0
148
Member Avatar for HunainHafeez
Member Avatar for windybey

You better ask them if they provide an API to their data. You can include the page in a frame, but that wouldn't link anything to your page.

Member Avatar for pritaeas
0
88
Member Avatar for crea8ive
Member Avatar for ditty
Member Avatar for ssramvinay
Member Avatar for xNZxAssAssiNx
Member Avatar for Priti_P
Member Avatar for davy_yg

Are both MySQL servers identical? The error states that BTREE is not supported, this is caused most likely if you are trying to import a dump from a new version into an older version of MySQL. If you want it to work, remove all occurences of "USING BTREE".

Member Avatar for davy_yg
0
289
Member Avatar for bmaglar3
Member Avatar for np complete
Member Avatar for LastMitch

`alt` is for displaying a text when the image isn't loaded. It is not meant to be a hint. If you do not like the tooltip that the browser is showing (title attribute), you'll have to build your own.

Member Avatar for LastMitch
0
212
Member Avatar for mmonclair

What database are you using. MySQL supports [regex](http://dev.mysql.com/doc/refman/5.6/en/regexp.html) functionality.

Member Avatar for pritaeas
0
266
Member Avatar for mani531

[This article](http://geekswithblogs.net/RockStarCoder/archive/2009/11/11/binding-an-asp.net-gridview-to-a-typed-dataset.aspx) might help.

Member Avatar for pritaeas
0
107
Member Avatar for Khav
Member Avatar for groma1

@Bachov: That does solve the issue. If `$_POST['dob']` contains `02/03` he will still get the error.

Member Avatar for pritaeas
0
1K
Member Avatar for TonyG_cyprus

Shouldn't you be using `$id` instead of `$titl`? Do check if an error message is returned when opening. There is a comment in the manual stating *This function only support database of SQLite 2 or below. For SQLite 3, you must use PDO.*, although I'm not sure if this is …

Member Avatar for TonyG_cyprus
0
208
Member Avatar for mtho
Member Avatar for LastMitch
0
130
Member Avatar for johnef_sh

> the Email don't go at all to the users That would mean that there's nothing wrong with the code. Most likely your email is marked as spam and moved to the spam folder.

Member Avatar for johnef_sh
0
254
Member Avatar for david.f.smith.351
Member Avatar for Alok Tiwari

Here's one: http://www.codeproject.com/Articles/1231/ASP-NET-Web-Service

Member Avatar for pritaeas
0
36
Member Avatar for Arindam Das
Member Avatar for new_developer

> I know if we access private variable it will give an error This is a language restriction, you cannot override this behaviour. The workaround is to use the magic method `__get`. See [the manual](http://nl1.php.net/manual/en/language.oop5.overloading.php#object.get) for more information.

Member Avatar for Bachu
0
172
Member Avatar for mkapetanos

Personally, I prefer a paid service: - The images are (hopefully) stored on a CDN for fast retrieval. - Images are shared, so likely to be already created/refreshed. - No processor drain on your own server. - No storage drain on your own server. - Paid is usually there to …

Member Avatar for pritaeas
0
150
Member Avatar for owenransen

A HTTP endpoint (identified by an URL) usually denotes the presence of a webservice.

Member Avatar for pritaeas
0
75
Member Avatar for bradly.spicer

That's because in `delete.php` `$file` has no value, and although you define a function, it is never executed.

Member Avatar for adam.adamski.96155
0
218
Member Avatar for pore

A backslash is an escape character in a string. [Read this](http://nl3.php.net/manual/en/language.types.string.php#language.types.string.syntax.single).

Member Avatar for pritaeas
0
181
Member Avatar for Dendei

Is this what you want? $response = $client->MyFunction(); $array = $response->string;

Member Avatar for Dendei
0
604
Member Avatar for bradly.spicer

Before the while use: echo '<select>'; In the `while` use: echo "<option value ='$file'>$file</option>"; After the while use: echo '</select>';

Member Avatar for bradly.spicer
0
217
Member Avatar for student_learner

- Correct. - You can store binary data in a database. - Those files are put on a CDN that are optimized for access across the world.

Member Avatar for pritaeas
0
65
Member Avatar for bLuEmEzzy

Check if value is null. If it is, assign zero to your variable, if not, use parseFloat.

Member Avatar for bLuEmEzzy
0
154
Member Avatar for RobLockett

Is it an option to create a type (class) that contains the available options? Can you provide some more details about the parameters?

Member Avatar for Momerath
0
158
Member Avatar for maori

Just a thought. Show your actual table structures, some sample table data plus the expected output you are looking for. That works a lot better than trying to describe it. (Or you can reproduce it [here](http://sqlfiddle.com/) and post a link.)

Member Avatar for diafol
0
159
Member Avatar for bafaqih

Did you search this forum? There should be plenty discussion threads about GMail/PHPMailer and authentication.

Member Avatar for LastMitch
0
333
Member Avatar for opman234

[This how to](http://geekswithblogs.net/evjen/archive/2007/11/24/117088.aspx) may help.

Member Avatar for opman234
0
185
Member Avatar for tonyfonseca
Member Avatar for mmcdonald
Member Avatar for Dendei

`$CustomerNumber = textbox1.text` this is what does not work. I suggest you try with test values first, like this: `public $CustomerNumber = '1001';` If you want output, change line 17 to: echo $client->KundGrunduppgifter(Customer); When you get that to work, we'll discuss how you can get it from an input.

Member Avatar for Dendei
1
968
Member Avatar for nit8899

Are you sure you have the `mysql.so` file? Apart from this problem: the mysql extension is about to be deprecated. I advise you to switch to mysqli or PDO instead.

Member Avatar for nit8899
0
1K

The End.