8,966 Posted Topics

Member Avatar for debasishgang7

Something like this probably. [CODE=javascript] result = subject.match(/<input type="text" name="mobile" value="(.*?)"\/>/g); [/CODE]

Member Avatar for pritaeas
0
165
Member Avatar for neorahav
Member Avatar for rotten69
0
131
Member Avatar for kingofnothing

How did you do the import ? You have to select a database first, but how to do that depends on your method.

Member Avatar for kingofnothing
0
217
Member Avatar for rayidi

You are trying to redirect in a PHP file that is called via AJAX. That won't work. You should return redirect info to your AJAX call, so you can redirect using Javascript in your 200 success function.

Member Avatar for pritaeas
0
1K
Member Avatar for newbie14

[CODE] SELECT * FROM tblMasterData MD, tblEventAlert EA, tblDevice D, tblEvent E WHERE MD.eventAlertID = EA.eventAlertID AND EA.eventAlertID = D.eventAlertID AND D.eventAlertID = E.eventAlertID AND E.eventAlertID > 0 [/CODE]

Member Avatar for newbie14
0
229
Member Avatar for Morten Brendefu

Perhaps [URL="http://delphi.about.com/od/delphitips2009/qt/preserve-code-folding.htm"]this article[/URL] will help.

Member Avatar for pritaeas
0
266
Member Avatar for depakjan
Member Avatar for 54uydf

One way would be to create a calculated column that concatenates both fields with the smallest first, so you can order and distinct that column. Although that may work, I guess there has to be a better way.

Member Avatar for pritaeas
0
199
Member Avatar for vishi96
Member Avatar for pritaeas
0
527
Member Avatar for towerrounder

Does your table only have one column ? Did you try adding the column name to your insert query?

Member Avatar for towerrounder
0
211
Member Avatar for jcarbillon

You got this example from SO ? It is designed to work with gmail, so change your sender email addresses and username and password. I am assuming you already have PEAR installed.

Member Avatar for jcarbillon
0
411
Member Avatar for Morten Brendefu

What language are you using ? Pascal ? You can create your own variant record and pass an array of that. Not sure if [iCODE]array of const[/iCODE] will work.

Member Avatar for Morten Brendefu
0
1K
Member Avatar for phorce

Make a script that does what you want, and then use a scheduler to run it once a day.

Member Avatar for pritaeas
0
82
Member Avatar for blaaam

I'd would be most helpful to see a list of those you already tried and don't want.

Member Avatar for Stefano Mtangoo
0
171
Member Avatar for brainfo

Your installation doesn't have a mail server on localhost you can connect to. I suggest you search this forum for phpmailer.

Member Avatar for pritaeas
0
17K
Member Avatar for dd2308
Member Avatar for tahirkhanafridi

Change line 20 to this: [CODE] echo "<div class='images_thumb'><a href='http://pashtoaudio.com/tahir_upload/".$show_img."'><img src='/tahir_upload/".$show_img."'></img></a></div>"; [/CODE] Note the [iCODE]/[/iCODE] in front of your image source, and it should be [iCODE]src[/iCODE] (not scr).

Member Avatar for tahirkhanafridi
0
135
Member Avatar for Jashandeep
Member Avatar for BleepyE

If you show your table structure, I am sure someone can give you a query that works.

Member Avatar for cereal
0
137
Member Avatar for newbie14

[CODE] SELECT clientID, clientName FROM tblClient WHERE clientStatus='a' AND clientID NOT IN (SELECT clientID FROM tblCDSValidity) ORDER BY clientName [/CODE]

Member Avatar for newbie14
0
174
Member Avatar for dave086

Do you want to load it in an iframe, or do you want to display part of the feed/page within your own document (without an iframe). For the last one, you can parse the feed's xml with SimpleXML for example. Then change the links to load your own page, which …

Member Avatar for diafol
0
209
Member Avatar for dinhunzvi
Member Avatar for pritaeas
0
133
Member Avatar for moroccanplaya

If you change line 1 to: [CODE] $car = "porche.jpg"; [/CODE] it will work. You should never use an absolute path to a windows folder, because once you upload it to a webhost, it will no longer work.

Member Avatar for pritaeas
0
199
Member Avatar for rphp

What are you going to develop ? Decide which package supports best what you need. There is also WampServer and XAMPP.

Member Avatar for pritaeas
0
90
Member Avatar for abhinav1986

[QUOTE=;][/QUOTE] [quote]Error: Column count doesn't match value count at row 1[/quote] This error is caused by something like this: [code=sql] INSERT INTO table (col1, col2) VALUES ('val1', 'val2', 'val3') [/code] so make sure the count matches before and after VALUES. Another issue is on line 41. The query says INSERT …

Member Avatar for pritaeas
0
293
Member Avatar for shamsidah
Member Avatar for pritaeas
0
130
Member Avatar for titosd
Member Avatar for diafol
0
169
Member Avatar for Pirsig

This may help: [url]http://mc-computing.com/languages/delphi/delphi_serialio.htm[/url]

Member Avatar for Pirsig
0
261
Member Avatar for mehdi.yazdani
Member Avatar for Danny159
Member Avatar for rahulroshan

It depends on the database you are using whether or not this is possible.

Member Avatar for broj1
0
82
Member Avatar for Zedith

[CODE=php] $query = "SELECT * FROM news WHERE news_url = '$curl'"; [/CODE]

Member Avatar for pritaeas
0
176
Member Avatar for dean8710

What do you want to know ? You can always start with [URL="http://httpd.apache.org/docs/2.2/howto/htaccess.html"]the manual[/URL].

Member Avatar for dean8710
0
344
Member Avatar for amie900218

Most hosts don't provide an option for this (and I don't think they will allow you to use root). I think you should use the username and password as provided by them. Also, you should be able to create new users in your cPanel, then you can create your own …

Member Avatar for amie900218
0
251
Member Avatar for vspadmanabhan
Member Avatar for lastgame2007

It means your script already outputted something, before you called the header function. It can be an echo, or some dangling whitespace in your code.

Member Avatar for pritaeas
0
125
Member Avatar for Stefano Mtangoo

If you want to write your own, I think you could start easy by replacing RTF tags for HTML tags. For example replace [iCODE]\b[/iCODE] with [iCODE]<strong>[/iCODE], [iCODE]\b0[/iCODE] with [iCODE]</strong>[/iCODE] and likewise for [iCODE]\i[/iCODE] being [iCODE]<em>[/iCODE]. It depends on how far you want to take this.

Member Avatar for pritaeas
0
500
Member Avatar for moneypro
Member Avatar for moneypro
0
202
Member Avatar for pritaeas

I am looking for some experiences with embedding video's in my website. Until now I had only externally linked video's (which included their own players). Now I have to embed my own. So far I've seen HTML5, Flow player, JW Player and VideoJS. Any recommendations ? Added: Also found [URL="http://praegnanz.de/html5video/"]this …

Member Avatar for pritaeas
0
121
Member Avatar for TigerPrincess
Member Avatar for Veneficvs

As far as I can tell from the W3C spec, the FileReader functions are asynchronous. That means that the alert() happens before the file is done loading.

Member Avatar for Veneficvs
0
475
Member Avatar for sparkles_links
Member Avatar for Biiim
0
125
Member Avatar for whiteyoh

Is it complaining about your include files ? The current folder is probably different, then when called from the browser. Try issuing a [iCODE]chdir()[/iCODE] before including your files, or use absolute paths in your includes.

Member Avatar for whiteyoh
0
75
Member Avatar for trektrak

Can you give an example of your table and the data that is in it, and an example of the output you require ?

Member Avatar for trektrak
0
145
Member Avatar for rayidi
Member Avatar for sharathg.satya
Member Avatar for pritaeas
0
164
Member Avatar for pallen

If you want to make interception more difficult, use an SSL connection. Then it will at least be sent encrypted. Or let those doctors e-mail it to you directly, without using the webpage.

Member Avatar for urtrivedi
0
137
Member Avatar for naraza
Member Avatar for naraza
0
101
Member Avatar for solomon_13000

The stored proc cannot determine that the output returns only one row. You can try adding [iCODE]LIMIT 1[/iCODE] to your subquery.

Member Avatar for solomon_13000
0
866
Member Avatar for dean8710

You cannot avoid that by setting file permissions. IMO, you need something like a password protected folder to store them in.

Member Avatar for dean8710
0
192

The End.