8,966 Posted Topics
Re: If I run this code I get an error message (which you are hiding with the `@`): *DOMDocument::loadHTMLFile(): htmlParseEntityRef: expecting ';' in http://sports.yahoo.com/news/messis-tax-hearing-put-back-122033643--sow.html, line: 539* meaning the DOM could not be parsed correctly. Resulting method calls will fail. | |
Re: http://docs.oracle.com/cd/E35137_01/doc.32/e18460/oracle_db2_compared.htm | |
Re: What is this data stored in? A database? | |
Re: Show you tables structures, and explain what the result should look like. | |
Re: You may want to have a look at [this](http://php.net/autoload). | |
Re: You'll need to use `GROUP BY id` in your query. | |
| |
Re: > The code you posted is incomplete. It looks complete to me. The problem is that I cannot access the WSDL to try the code and soap method. | |
Re: You mean a [UDF](http://dev.mysql.com/doc/refman/5.7/en/adding-functions.html)? | |
| |
Re: Do you have a link to their website/documentation? | |
Re: How about [this one](http://www.amazon.com/Exam-Ref-70-480-Programming-JavaScript/dp/0735676631)? | |
Re: Have you tried with [array_filter](http://php.net/manual/en/function.array-filter.php)? ![]() | |
Re: http://www.daniweb.com/web-development/php/code/425686/create-a-table-x-columns-wide | |
Re: You will need to use bidirectional text, as explained [here](http://www.i18nguy.com/markup/right-to-left.html). | |
Re: `$_PROFILER` is an object. `->` means you want to use a method or property of that object. `mark()` is a method (function). `null` means 'no value'. `'afterRoute'` is a string, but it's meaning depends on the rest of the code. Am not sure about the colon, I'd have to see … | |
| |
Re: I think it should be: SELECT pris, skin_year, CASE ialt WHEN 0 THEN SUM(ær,vedrur,lamp) ELSE ialt END AS ialt FROM skind_statistik WHERE kunde_id = x Can't test right now. | |
Re: What do you mean by any character? .* everything [^\/]* anything but a slash \w+ at least one word character including digits and underscores \w\w exactly two | |
Re: Each new folder, you want to list the contents of, needs to opened with `opendir` as well. It's a recursive function. | |
This thread is opened to collect **bugs and glitches** found in the new layout for DaniWeb. If you find any, please make sure you specify the steps to reproduce the issue, mention your OS and browser, both with version information. Think whether adding a screenshot will help show the issue. … | |
We have a new layout. Should you encounter a layout issue, or just want to add your opinion... do so here. If there's some issue, do inform uus of your OS and browser, and optionally an annotated screenshot. If you find reproducable bugs, please use [this thread](http://www.daniweb.com/community-center/daniweb-community-feedback/threads/460894/new-layout-bugs-and-glitches). ![]() | |
Re: Correct me if I'm wrong, but if this array is created by a loop returned from a query, then you can use ORDER BY to put them in the right order in the first place. | |
Re: Hard to say from just these function calls, but a temporary table is dropped when the connection drops. ![]() | |
Re: First, replace your `OR` with `AND`. Second you may want to remove a part from the query if that textbox has no value. Third, depending on what/how you want to search, you may want to use a `LIKE`. | |
Re: Personally: if you make the e-mail column unique in your table, then you can just insert your new values. If the e-mail already exists, the insert query will fail. | |
Re: http://www.w3.org/html/wg/drafts/html/master/browsers.html#valid-browsing-context-name-or-keyword | |
Re: What reason would I have to use this over the `app.config`? | |
| |
Re: Not in the same script. It is possible to start another script asynchronously. | |
Re: Using the comma's is tricky, as it can cause a query error. My suggestion would be to use an array, followed by `implode`: $update = array (); if( !empty($CFHL_A) ) { $update[] = "`CFHL_A`='$CFHL_A'"; } //... if( !empty($MFHL) ) { $update[] = "`MFHL`='$MFHL'"; } if( !empty($E1314_MFHL) ) { $update[] = … | |
Re: What language are you using, and what do you have so far? | |
Re: Noted. The link above tries to open `http//www.threadless.com/?utm_medium=banner&utm_source=aod&utm_campaign=LD15_Intl`, indeed missing colon. | |
Re: I suggest you don't do this in the table, but just format the ID when you want to output it. | |
Re: I suggest you use some echo's so you can see where the code stops. | |
Re: Change line 12 to: for ($i = 0; $i < $elements; $i++) You are processing one element too many. | |
Re: Show your code, and also any error messages. | |
Re: http://www.daniweb.com/web-development/php/threads/461534/php-sqlite http://www.daniweb.com/web-development/php/threads/461781/sqlite This is your 4th thread on the subject (one was removed). Don't keep making new ones, stick to the one you created. Please read the rules, it specifically states: *"Do not post the same question multiple times"* | |
![]() |
The End.