8,966 Posted Topics

Member Avatar for diafol
Member Avatar for sudeepjd
0
141
Member Avatar for gidireich

In such a situation I'd define my classes/methods for my generic functionality. For every class I'd sub-class it to a client class. The default client sub-class will contain nothing new, and all calls will go through the client class. [code] class FileAccess {} class ClientFileAccess extends FileAccess {} // <-- …

Member Avatar for gidireich
0
154
Member Avatar for Cstonehouse
Member Avatar for kesh1000

[url]http://www.web-development-blog.com/archives/send-e-mail-messages-via-smtp-with-phpmailer-and-gmail/[/url]

Member Avatar for pritaeas
0
349
Member Avatar for daneuchar

If you use a framework then a lot of code is already written. Then, depending on your project, you can chose the framework that best fits your specifications. You should see it as a tool for the job.

Member Avatar for daneuchar
0
132
Member Avatar for Ancient Dragon
Member Avatar for Agapelove68
0
245
Member Avatar for niths
Member Avatar for satya2mysql
Member Avatar for Awah Mohamed

It should be: [code] INSERT INTO table (columns) VALUES (values) [/code] instead of VALUE.

Member Avatar for sudeepjd
0
113
Member Avatar for saadi06
Member Avatar for saadi06
0
281
Member Avatar for luke noob
Member Avatar for thejimgaudet
0
252
Member Avatar for Clarkeez

If you use AJAX then you can poll the server for changes. See the answer in the Javascript forum.

Member Avatar for Ezzaral
0
76
Member Avatar for swilliamrobert

[code=php] $path = 'response.xml'; // this is your response saved to file $doc = simplexml_load_file($path); $doc->registerXPathNamespace('ns3', 'urn:UMARKETSCWS'); $nodelist = $doc->xpath('//ns3:createsessionResponse/ns3:createsessionReturn/ns3:sessionid'); echo 'Session ID: ' . (string)$nodelist[0]; [/code]

Member Avatar for swilliamrobert
0
1K
Member Avatar for Batoul88

A google search came up with this: [url]http://support.microsoft.com/kb/300956/en-us[/url]

Member Avatar for Batoul88
0
73
Member Avatar for benjaminFowl87

1-3 numbers, at least one character: [code] \d{1,3}=[a-zA-Z]+ [/code] If you'd want letters, digits and underscores, you can use: [code] \d{1,3}=\w+ [/code]

Member Avatar for pritaeas
0
113
Member Avatar for ankit.pandey3
Member Avatar for MichaelWClark

If all your properties are stored as string values, then you could use a table to link categories and properties. You'd have a table for categories, one for property definition, another one linking them together, and one data table, linking category, property and value to your product.

Member Avatar for pritaeas
0
98
Member Avatar for aksahoo17

Check your casing, in the form you use Submit1, in php submit1. They should match exactly.

Member Avatar for pritaeas
0
101
Member Avatar for getnit

It is still in use. They have just released XE, and have a new roadmap for the future. You can read more on the embarcadero website.

Member Avatar for Duoas
0
118
Member Avatar for onlymani
Member Avatar for benhowdle89
0
88
Member Avatar for andydeans

How is your site setup ? Do you use PHP, MySQL, or other technologies ? An RSS feed is really nothing more than an XML file containing your newest entries.

Member Avatar for RoseMary3
0
139
Member Avatar for jakizak

[code] $query = mysql_query("SELECT * FROM `products` WHERE `name` LIKE '%$s1%' AND `functions` LIKE '%$s3%'"); [/code]

Member Avatar for raju_boini525
0
682
Member Avatar for feoperro

You can use rowspan. [code] <table> <tr> <td rowspan="2">1</td> </tr> <tr> <td>2</td> <td>3</td> </tr> </table> [/code]

Member Avatar for BSkiLLs
0
177
Member Avatar for vegaseat

I was speeding down the highway when I suddenly see a police car behind me, so I speed up. After a while, unable to get rid of him I pull over. When he's beside the car he says: "Well, I've stopped a hell of a lot of speeding drivers today …

Member Avatar for crunchie
0
858
Member Avatar for dennishall
Member Avatar for stokes1900
0
192
Member Avatar for kram54

You cannot mix javascript and php like that. You need to create a php file that generates the complete javascript array definition.

Member Avatar for pritaeas
0
271
Member Avatar for pritaeas

Anybody knows if this trial is still available for download somewhere ? I need to test something on an older XP installation, and the 2008 trial needs 2003 server to run.

Member Avatar for pritaeas
0
97
Member Avatar for srikanth.hk
Member Avatar for Kieran Y5
Member Avatar for Kieran Y5
0
175
Member Avatar for djcrab

I think that after the dialog with the result, you should make it easy for the user to add three new values (e.g. clear the input fields). "Until the user decides to quit" probably means a button to close the browser, or possibly a dialog asking whether or not you …

Member Avatar for djcrab
1
4K
Member Avatar for JenniO
Member Avatar for djcrab

The confirmSubmit function should return false if submitForm == false. Check your logic so it does. Your functions should return false if you do not want to submit/reset, or true if you do.

Member Avatar for djcrab
0
102
Member Avatar for girishankar
Member Avatar for raju_boini525
Member Avatar for pritaeas
0
70
Member Avatar for jonasjo
Member Avatar for jon44

Did you read the sticky thread a the top of this forum ? Anyway, there are tons of threads here, al with the same problem...

Member Avatar for pritaeas
0
497
Member Avatar for Puster
Member Avatar for Brianbc

If you want to insert the current timestamp you can use NOW(), like this; [code=php] $insert = "INSERT INTO eguardIPs (Field1,Field2,Field3,start) VALUES ('".$_POST['Field1']."', '".$_POST['Field2']."', '".$_POST['Field3']."', NOW())"; [/code]

Member Avatar for Brianbc
0
104
Member Avatar for lbargers
Member Avatar for RoseMary3
Member Avatar for jon44
0
80
Member Avatar for plasteezy
Member Avatar for pritaeas
0
182
Member Avatar for Brianbc
Member Avatar for theonly
0
2K
Member Avatar for mohansinhf

1. Show your query. 2. HTML does not show line-breaks, unless you show them inside a <pre> tag, or convert them to <br/>

Member Avatar for pritaeas
0
84
Member Avatar for fuston05

XML is needed when you want to interface with some API's, but most of them now support JSON too. In my opinion I'd learn js/AJAX first, and XML when you need to.

Member Avatar for pritaeas
0
61
Member Avatar for Coenster

You want to edit inside the stringgrid, or just copy a cell value to some editbox elsewhere ?

Member Avatar for pritaeas
0
22
Member Avatar for fuston05

I'll ask a question back: how are you going to provide a full website (menu's and content) to your user, using only javascript.

Member Avatar for chrishea
1
255
Member Avatar for Stefano Mtangoo

How about searching with [url=http://dev.mysql.com/doc/refman/5.1/en/regexp.html]REGEX[/url]. [code] $query = "SELECT * FROM table WHERE column REGEXP '[[:<:]]" . $word . "[[:>:]]'" [/code]

Member Avatar for Stefano Mtangoo
0
92
Member Avatar for ZozOQ

Most likely the contents come from a database table. It searches for "register" and returns the contents associated with it.

Member Avatar for ZozOQ
0
317
Member Avatar for LianaN

Personally, I like Navicat a lot, but it does not provide the visualization you ask for. I did use MicroOLAP a long time ago, which does have a [url=http://www.microolap.com/products/database/mysql-designer/]designer[/url] like that.

Member Avatar for LianaN
0
183
Member Avatar for gikonyo
Member Avatar for pritaeas
0
84

The End.