8,966 Posted Topics

Member Avatar for eburlea

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.

Member Avatar for pritaeas
0
154
Member Avatar for Mdsharfi
Member Avatar for pritaeas
0
138
Member Avatar for mary.weiler.71
Member Avatar for bbindian
Member Avatar for Atli
0
220
Member Avatar for PerplexedB
Member Avatar for PerplexedB
0
344
Member Avatar for gandrap
Member Avatar for invisiblevision
Member Avatar for DiTeN

> 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.

Member Avatar for DiTeN
0
306
Member Avatar for HDRG

You can use something like: INSERT INTO `new_table` (`av_val1`, `av_val2`) SELECT AVG(`val1`) AS `av_val1`, AVG(`val2`) AS `av_val2` FROM `table` GROUP BY `id`

Member Avatar for HDRG
0
324
Member Avatar for squeak24

You mean a [UDF](http://dev.mysql.com/doc/refman/5.7/en/adding-functions.html)?

Member Avatar for squeak24
0
153
Member Avatar for PF2G
Member Avatar for chrisnelsonok
Member Avatar for Papa_Don
Member Avatar for nlkm

How about [this one](http://www.amazon.com/Exam-Ref-70-480-Programming-JavaScript/dp/0735676631)?

Member Avatar for pritaeas
0
156
Member Avatar for devianleong
Member Avatar for garyjohnson

Have you tried with [array_filter](http://php.net/manual/en/function.array-filter.php)?

Member Avatar for diafol
0
372
Member Avatar for devianleong

http://www.daniweb.com/web-development/php/code/425686/create-a-table-x-columns-wide

Member Avatar for devianleong
0
397
Member Avatar for M.Waqas Aslam

You will need to use bidirectional text, as explained [here](http://www.i18nguy.com/markup/right-to-left.html).

Member Avatar for M.Waqas Aslam
0
126
Member Avatar for IT_Techno

`$_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 …

Member Avatar for IT_Techno
0
262
Member Avatar for Jay_3
Member Avatar for Ellielli
Member Avatar for klemme

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.

Member Avatar for klemme
0
225
Member Avatar for domingo

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

Member Avatar for domingo
0
190
Member Avatar for Chirag_97

Each new folder, you want to list the contents of, needs to opened with `opendir` as well. It's a recursive function.

Member Avatar for AndrisP
0
205
Member Avatar for pritaeas

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. …

Member Avatar for Dani
0
1K
Member Avatar for pritaeas

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).

Member Avatar for diafol
0
1K
Member Avatar for t_thakar

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.

Member Avatar for t_thakar
0
421
Member Avatar for Kewne

Hard to say from just these function calls, but a temporary table is dropped when the connection drops.

Member Avatar for diafol
0
200
Member Avatar for uday.2812

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`.

Member Avatar for ChrisHunter
0
133
Member Avatar for Mike_H

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.

Member Avatar for pritaeas
0
308
Member Avatar for sania khan

http://www.w3.org/html/wg/drafts/html/master/browsers.html#valid-browsing-context-name-or-keyword

Member Avatar for almostbob
0
99
Member Avatar for kristenhanna.martin
Member Avatar for TechSupportGeek
Member Avatar for TechSupportGeek
0
143
Member Avatar for pssubash
Member Avatar for tkud
Member Avatar for tkud
0
214
Member Avatar for ceeandcee

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[] = …

Member Avatar for pritaeas
0
158
Member Avatar for andreiviziru
Member Avatar for marethamogale
Member Avatar for sepp2k
0
133
Member Avatar for ktsangop

Noted. The link above tries to open `http//www.threadless.com/?utm_medium=banner&utm_source=aod&utm_campaign=LD15_Intl`, indeed missing colon.

Member Avatar for pritaeas
1
276
Member Avatar for phorce
Member Avatar for Raju_3
Member Avatar for AndrisP
0
474
Member Avatar for tihomir.dochev
Member Avatar for abhi10kumar

Change line 12 to: for ($i = 0; $i < $elements; $i++) You are processing one element too many.

Member Avatar for AndrisP
0
2K
Member Avatar for TimSham
Member Avatar for Nilesh Talaviya
Member Avatar for John_Tee

All string types are described in the documentation/manual.

Member Avatar for almostbob
0
168
Member Avatar for jennyPush
Member Avatar for lewashby

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"*

Member Avatar for lewashby
-1
1K
Member Avatar for Hanan.Muslemani
Member Avatar for zmem32

The End.