8,966 Posted Topics
Re: https://developers.google.com/youtube/2.0/developers_guide_protocol#Searching_for_Channels | |
Re: Count your curly brackets. You must've closed one too early. | |
Re: You can use `$('select').change()`. If you show what you have so far, we can point you in the right direction. | |
Re: Sounds like the page can no longer find the CSS. Check your paths. | |
Re: Sounds more like some rogue CSS rule that's messing it up. Use your browser's developer tools to find out what causes it. | |
Re: $("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() { }); | |
Re: 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. | |
Re: 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). | |
| |
Re: Executing the same query for MSSQL in the crontab makes more sense. | |
Re: Will you share your solution? | |
Re: 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. | |
| |
Re: http://php.net/manual/en/simplexmlelement.construct.php | |
Re: `SELECT FROM store_items ...` is missing `*` | |
Re: "Hackers" is funny. | |
![]() | Re: `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. ![]() |
Re: What database are you using. MySQL supports [regex](http://dev.mysql.com/doc/refman/5.6/en/regexp.html) functionality. | |
Re: [This article](http://geekswithblogs.net/RockStarCoder/archive/2009/11/11/binding-an-asp.net-gridview-to-a-typed-dataset.aspx) might help. | |
Re: See Restler. It will help you build a REST API. | |
Re: @Bachov: That does solve the issue. If `$_POST['dob']` contains `02/03` he will still get the error. | |
Re: 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 … | |
![]() | |
Re: > 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. | |
Re: This should work: $data_email_sender->AddToAddr($_GET['ID']); | |
Re: Here's one: http://www.codeproject.com/Articles/1231/ASP-NET-Web-Service | |
Re: This one perhaps: http://silverlightgantt.codeplex.com/ | |
Re: > 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. | |
Re: 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 … | |
Re: A HTTP endpoint (identified by an URL) usually denotes the presence of a webservice. | |
Re: That's because in `delete.php` `$file` has no value, and although you define a function, it is never executed. | |
Re: 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). | |
Re: Is this what you want? $response = $client->MyFunction(); $array = $response->string; | |
Re: Before the while use: echo '<select>'; In the `while` use: echo "<option value ='$file'>$file</option>"; After the while use: echo '</select>'; | |
Re: - Correct. - You can store binary data in a database. - Those files are put on a CDN that are optimized for access across the world. | |
Re: Check if value is null. If it is, assign zero to your variable, if not, use parseFloat. | |
Re: Is it an option to create a type (class) that contains the available options? Can you provide some more details about the parameters? | |
Re: 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.) ![]() | |
Re: Did you search this forum? There should be plenty discussion threads about GMail/PHPMailer and authentication. ![]() | |
Re: [This how to](http://geekswithblogs.net/evjen/archive/2007/11/24/117088.aspx) may help. | |
Re: `$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. | |
Re: 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. |
The End.