8,966 Posted Topics

Member Avatar for ranjit_mahadik
Member Avatar for Biiim
0
106
Member Avatar for simplypixie
Member Avatar for abhi10kumar

You can see my example in action [here](http://www.pritaeas.net/demos/jq-dropdown/index.php). Only the PHP code for retrieving the data is not visible, but am sure that is not an issue.

Member Avatar for abhi10kumar
0
1K
Member Avatar for Sravani saka

http://docs.oracle.com/cd/E12151_01/doc.150/e12155/oracle_mysql_compared.htm See paragraph 2.2.2

Member Avatar for pritaeas
0
203
Member Avatar for KE50

1. Depends on your choice of 2. For example, if you build a SOAP service, then you can import the WSDL and use functions. Any other method, you can use Indy or Overbyte. 2. You can use a REST or SOAP service, or just simple scripts. XML is the preferred …

Member Avatar for pritaeas
0
683
Member Avatar for daino

Not sure if it fits your needs, but [Birt](http://www.eclipse.org/birt/phoenix/) is a free one.

Member Avatar for pritaeas
0
84
Member Avatar for veledrom

Instead of doing a query, you could add a unique key over those columns. It will have the same effect: the insert will fail, returning `false`.

Member Avatar for pritaeas
0
96
Member Avatar for cali_dotcom
Member Avatar for pritaeas
0
143
Member Avatar for davy_yg

> mysql_query("INSERT INTO komentar (nama, email, komentar)VALUES ($newnama, $newemail, $newcomments)"); Should be: mysql_query("INSERT INTO komentar (nama, email, komentar) VALUES ('$newnama', '$newemail', '$newcomments')");

Member Avatar for pritaeas
0
143
Member Avatar for Neetumishra
Member Avatar for mike_2000_17

Well, today in Opera 11.64 I discovered that when text is selected and then clicking the editor, the pasting appears stuck in a loop (pasting 63 quotes).

Member Avatar for Dani
1
563
Member Avatar for karthik_ppts
Member Avatar for dza

The server where the database is needs to allow remote connections. Your router/firewall needs to allow the website host to connect/reroute. Then you can open the database server by ip address or hostname on the host. Check first with your web host, to see that there are no limitations that …

Member Avatar for CarterLangley
0
110
Member Avatar for dartiss

How about this: var el = document.getElementById(id_image); var state = ''; if (el != null) state = el.src;

Member Avatar for dartiss
0
196
Member Avatar for Violet_82

I agree that the code you show is confusing. It would have made sense to start at zero. The problem this code has is that it wants to use `currentPhoto` for the `eq()` function (which is one-based).

Member Avatar for pritaeas
0
205
Member Avatar for nova37

http://wiki.phpmyadmin.net/pma/Upgrading Basically: 1 - backup, 2 - copy new source files, 3 - restore config

Member Avatar for thilipdilip
0
200
Member Avatar for webenveloper

> :variable Definitely preferred (or ?), because it indicates that you are using [bound parameters](http://php.net/manual/en/mysqli-stmt.bind-param.php). That drastically decreases the change of an SQL injection. The other three rely on variable insertion, which need decent validation before using them.

Member Avatar for webenveloper
0
186
Member Avatar for chrishea

You would need to use backreferences, so you can specify the individual characters, like so: result = subject.replace(/([a-z|0-9])(,)/ig, "$1~"); `$1` points to the char (between the first set of parenthesis), `$2` points to the comma.

Member Avatar for pritaeas
0
282
Member Avatar for PF2G
Member Avatar for diafol
0
100
Member Avatar for accra

I think `file($send)` is not returning anything, hence the error (it is apparently not an array). It's quite possible you're not allowed to do that. If you are on a shared host, `file()` is often blocked. You may need to switch to `cUrl`.

Member Avatar for pritaeas
0
164
Member Avatar for sasikrishnasamy

It's probably a normalization. Can you please provide some additional info, like a link to the tutorial you mentioned.

Member Avatar for pritaeas
0
162
Member Avatar for Majestics
Member Avatar for Ritesh_4

I doubt this is a viable option, since every CMS is using different codes/markers for specifying output within the template. It would mean writing a lot of IF's within the template (assuming that is supported) to get some code working for a specific CMS. I suggest you start with a …

Member Avatar for pritaeas
0
152
Member Avatar for finalist

Here's a start: http://www.daniweb.com/software-development/pascal-and-delphi/threads/359971/using-ole-automation-of-excel-2010-with-delphi-2010

Member Avatar for pritaeas
0
138
Member Avatar for pritaeas

Was just searching, had 'pagination' in 'PHP forum'. Got plenty of results back, but when I added the filter to show only 'discussion threads', there were no results at all.

Member Avatar for Dani
0
301
Member Avatar for Djmann1013

`$banned` has no value, I think you mean to use `$row['banned']`

Member Avatar for diafol
0
158
Member Avatar for nova37

From what I can see, the PHP is just not returning any data. Perhaps you have defined an infinite loop somewhere. Anyway, guessing will be difficult without code.

Member Avatar for nova37
0
108
Member Avatar for PF2G

Like this? <!DOCTYPE html> <html> <head> <style type="text/css"> table, tr { border: 0 } td.mid, td.top { border-bottom: 1px solid #000 } td.mid, td.bottom { border-top: 1px solid #000 } td.middle, td.left { border-right: 1px solid #000 } td.middle, td.right { border-left: 1px solid #000 } </style> </head> <body> <table …

Member Avatar for JorgeM
0
708
Member Avatar for Vallnerik

You should be able to post a message to the browser window's handle. Read more on [MSDN](http://msdn.microsoft.com/en-us/library/windows/desktop/ms632665(v=vs.85).aspx).

Member Avatar for pritaeas
0
340
Member Avatar for stereoworld

I don't know anything about Magento, but wouldn't the Magento forums be a more suitable place to ask such questions? Am quite positive there are more people experiencing a similar issue.

Member Avatar for pritaeas
0
209
Member Avatar for cse.avinash

You would need to learn a scripting language. You'd need to learn how to use the Facebook API, parse JSON or XML and do database actions.

Member Avatar for pritaeas
0
195
Member Avatar for PhilEaton
Member Avatar for davidmoffitt1

The visited link is set according to your browser's history. You can either use it, or give it a new color using CSS. If you want different coloring depending on last accessed, then you need to do some coding and tracking.

Member Avatar for pritaeas
0
122
Member Avatar for davy_yg

You may want to take a look at [these examples](http://matthewjamestaylor.com/blog/perfect-multi-column-liquid-layouts).

Member Avatar for davy_yg
0
223
Member Avatar for rayidi
Member Avatar for ckchaudhary
0
342
Member Avatar for Aleroth

http://www.daniweb.com/business-exchange/show-off-your-projects/threads/427092/online-chat-room

Member Avatar for Aleroth
0
91
Member Avatar for dani0

Instead of looping through all results and then picking a random one, you can let MySQL do the job: SELECT * FROM table ORDER BY RAND() LIMIT 1

Member Avatar for vibhaJ
0
175
Member Avatar for zhouy
Member Avatar for Ebiso

> other than self hosting can be cheaper Don't underestimate the costs of running your own server. Hardware, infrastructure, software licenses, upgrading and updating... All take a lot of your (costly) time. A good host will have a lot of precautions already in place, because they can not afford to …

Member Avatar for pritaeas
0
124
Member Avatar for zychos

You can try this code instead, then you don't need to remove the last OR: $where = array (); foreach ($fields as $field) { if (isset($_GET[$field]) and !empty($_GET[$field])) { $where[] = $field . " LIKE '%" . $_GET[$field] . "%' "; } } $whereClause = ' WHERE ' . implode(' …

Member Avatar for zychos
0
292
Member Avatar for pritaeas

The `ReplaceStrings` function replaces all strings in `APatterns` found in `ASubject` with the value in `AReplacement`. As an example, I added the `RemoveStrings` function which replaces everthing with an empty string, thus deleting all strings found. Usage examples are in the XMLDoc comments. A good test will be to rewrite …

Member Avatar for pritaeas
0
283
Member Avatar for Raakesh399

There's [NuSoap](http://sourceforge.net/projects/nusoap/) and for REST services I can recommend [Restler](http://luracast.com/products/restler/)

Member Avatar for Raakesh399
0
99
Member Avatar for tyson567
Member Avatar for Ritesh_4

How about tools like mockingbird (web based), pencil sketching (FF addon), balsamiq (desktop) or ForeUI (desktop/browser) ?

Member Avatar for Ritesh_4
0
206
Member Avatar for CaptCuffs
Member Avatar for Crakken
0
137
Member Avatar for xbat
Member Avatar for jakobia
Member Avatar for naru vaishnaw

> $sql = "SELECT * FROM entryform WHERE id = id "; This is not right. I think this should be: $id = isset($_GET['id']) ? $_GET['id'] : 0; $sql = "SELECT * FROM entryform WHERE id = $id ";

Member Avatar for pritaeas
0
166
Member Avatar for Crakken

This forum has a lot of examples in it already. Search for "paging" or "pagination".

Member Avatar for Crakken
0
148
Member Avatar for g00se
Member Avatar for g00se
0
134

The End.