8,966 Posted Topics

Member Avatar for Zainab_4

Basically you are building Google Alerts, but for more sources and with more restrictions. You'll need to integrate with news sources, or search engine APIs to extract the information you'd want to see. You need to build a service type application that runs daily and intelligently. > Is this technically …

Member Avatar for pritaeas
0
425
Member Avatar for phphp
Member Avatar for Aeonix

Before other people start whining, can you please fix your HTML, the snippet has unclosed tags (probably a copy/paste issue).

Member Avatar for Aeonix
1
441
Member Avatar for Ramaah
Member Avatar for phphp

Line 5 and 6 defines: type: "Get", data: { "code": data }, so line 3 should be: $d_f = $_GET['code'];

Member Avatar for pritaeas
0
235
Member Avatar for fayyaz
Member Avatar for poifull

Next time, create a new thread, instead of replying to a 6 year old thread. Add a div (or other container to your page) and set the left or right border with CSS.

Member Avatar for pritaeas
0
1K
Member Avatar for iso_1

What is the PQDatabase class? Does it automatically connect? Add error handling, it might be a connection error or something else database related.

Member Avatar for iso_1
0
245
Member Avatar for Aeonix

The following should match: /[\w ]+/ or: /^[\w ]+$/ You are missing a repeater, so your regex only checks the first character (J). The regex above matches one or more word characters or a space.

Member Avatar for pritaeas
0
391
Member Avatar for ELife
Re: Sql

You'll need to show your table structure, some sample data and how you want your output.

Member Avatar for ELife
0
264
Member Avatar for roop_world

You might not get an answer, since this post is 6 years old, and he hasn't posted since.

Member Avatar for AssertNull
0
227
Member Avatar for nancy_9
Member Avatar for davy_yg

> it is an alternative to SQL Server No. It is a MySQL database client administration tool, so in order to use it you need access to a MySQL server. If you don't have one, it needs to be installed as well.

Member Avatar for diafol
0
253
Member Avatar for Aeonix
Member Avatar for davy_yg
Member Avatar for DS9596
Member Avatar for pritaeas
0
163
Member Avatar for RobinTheHood

This is a seven year old thread, and the user hasn't been active in five. You probably won't get an answer.

Member Avatar for pritaeas
0
554
Member Avatar for zebnoon1

What does `adminfrm.php` do? What exactly happens, and what should happen? Any errors?

Member Avatar for zebnoon1
0
526
Member Avatar for Oleg_3
Member Avatar for SimonIoa
Member Avatar for cereal
0
450
Member Avatar for Sashika_1
Member Avatar for Oleg_3
0
387
Member Avatar for Hilal2009
Member Avatar for Reo_1

> it is failing to save the new record Do you get an error/exception? Perhaps forgot to install something?

Member Avatar for Reo_1
1
322
Member Avatar for Aeonix

http://php.net/array_intersect The result of the intersect of both arrays, should be an array identical to `array("newemail", "firstPassword", "secondPassword")` So, if you do an `array_diff()` on those two next, you should have an empty array. Hope it makes sense.

Member Avatar for Aeonix
0
242
Member Avatar for jeffersonalomia
Member Avatar for diafol
0
346
Member Avatar for _1_28

> So I am 12 You just violated our Terms of Service, which state you need to be over 13.

Member Avatar for Reverend Jim
0
418
Member Avatar for HM
Member Avatar for Ami Abdul
Member Avatar for pritaeas
0
204
Member Avatar for Garry_1

All your image boxes are in the Controls array of your form. If you loop that instead, it can work.

Member Avatar for Reverend Jim
0
831
Member Avatar for SimonIoa

You display the entire div. Either use: alert($('#allcountries option:selected').val()); or: alert($('#allcountries option:selected').text()); It's strange that allcountries is a `div` and not a `select`

Member Avatar for SimonIoa
0
343
Member Avatar for Saluki
Member Avatar for pritaeas
0
500
Member Avatar for zebnoon1
Member Avatar for Reverend Jim

> What is wrong with this? If there are no new messages, it defaults to showing an archive of old messages, as opposed to giving you an error message saying nothing new exists. Agreed. The problem with this is that when you click on your Message Inbox or Active Conversations …

Member Avatar for Dani
0
385
Member Avatar for phphp

Have a look at this [SO thread](http://stackoverflow.com/questions/2563918/create-a-cumulative-sum-column-in-mysql). Am sure it will get you started. If not, come back and explain your problem.

Member Avatar for Stuart_4
0
239
Member Avatar for zachattack05

Can you not zip the files using the password? Zip has built-in support for encrypting it's contents. You'd need the original password though. If you cannot decrypt them, I doubt it's possible.

Member Avatar for rproffitt
0
588
Member Avatar for Christina_5

https://github.com/angular/angular/milestones Check out the open bugs, and decide whether or not you want to take the chance. It should be stable enough or there wouldn't have been a Release Candidate.

Member Avatar for Jumonji
0
274
Member Avatar for Usman_10
Member Avatar for cereal
0
132
Member Avatar for Borzoi
Member Avatar for wad

> how to display multiple images in a row Next time start a new discussion thread instead of replying to an old one. Please explain clearly what you want, what you have and what isn't working.

Member Avatar for pritaeas
0
13K
Member Avatar for Chris920
Member Avatar for Zent
Member Avatar for rubberman
0
182
Member Avatar for PEM_1

> forecolor mu value of stocks in listview in a column stocks In C# this works for SubItems. Am sure you can convert it to what you need in VB.NET: lvItem.UseItemStyleForSubItems = false; lvItem.SubItems[2].BackColor = Color.Orange; // 2 should be the right column index

Member Avatar for Reverend Jim
0
403
Member Avatar for NOVICE3

http://php.net/manual/en/function.file-get-contents.php get_file_contents is not a function, and you do not need line 14. $mytextfile = file_get_contents("../images/comments.txt");

Member Avatar for kingwash
0
2K
Member Avatar for שנהב

Have a look at [this example](http://culttt.com/2012/10/01/roll-your-own-pdo-php-class/).

Member Avatar for JamesCherrill
0
5K
Member Avatar for Suzie999

As opposed to XML, [JSON](http://www.newtonsoft.com/json) is another option. Both are easy to read when debugging, JSON is only a little less bulky.

Member Avatar for pritaeas
0
388
Member Avatar for Amaina

The last unanswered, from 6 hours ago (as of this writing) is hardly something to worry about. It might be urgent for you, but everyone here has stuff to do and devote their free time answering. So be a little patient. Not sure about the other one.

Member Avatar for pritaeas
0
240
Member Avatar for Callum_3
Member Avatar for zero_1

Just download the new version and link it, or link directly to the [online version](https://code.jquery.com/jquery/). I wonder why you are still using such an old version, the latest is 3.1.0

Member Avatar for slate
0
158
Member Avatar for A_7

Add the `MONTH()` part to your select clause, so you can use an `IF()` to determine your calculation when the start and finish month is different.

Member Avatar for pritaeas
0
165
Member Avatar for Simple man

[Get Ready to Work with MSXML (C/C++) on MSDN](https://msdn.microsoft.com/en-us/library/ms765540(v=vs.85).aspx) has samples too.

Member Avatar for Simple man
0
858

The End.