8,966 Posted Topics

Member Avatar for toxicandy
Member Avatar for Ehsan_4

Why don't you push both values (the entire record) to the same array: while () { $recipients[] = $row; } foreach ($recipients as $recipient) { $mail->AddBCC($recipient['email'], $recipient['full_name']); }

Member Avatar for Ehsan_4
0
175
Member Avatar for RAPIDFIRE0311
Member Avatar for Taywin
0
221
Member Avatar for bhagvad30
Member Avatar for Sikander Nasar

You need to be a little more specific. What do you have and what are you trying to achieve?

Member Avatar for pritaeas
0
102
Member Avatar for chaitu11
Member Avatar for pritaeas
0
65
Member Avatar for Kevin_11

> Should I use a pre-existing CMS engine like WordPress and code ontop of that? Should I build the CMS myself from scratch? How much time do you have?

Member Avatar for pritaeas
0
158
Member Avatar for joshl_1995

http://tools.ietf.org/html/rfc2822#section-3.6 You can, but technically all fields except two are optional. See the 4th paragraph in section 3.6.

Member Avatar for joshl_1995
0
738
Member Avatar for aone.gaiemoabi
Member Avatar for santunu23
Member Avatar for pritaeas
0
198
Member Avatar for santunu23
Member Avatar for gilgil2

Is the closing quote on line 43 the same in your code, because that could cause an issue.

Member Avatar for gilgil2
0
262
Member Avatar for jarid3421

> if someone searches Google or any other search engine So you want this to work on all browsers, for all search engines? Are you trying to implement this on an intranet or so?

Member Avatar for jarid3421
0
263
Member Avatar for chaitu11
Member Avatar for centenond
Member Avatar for centenond
0
221
Member Avatar for myk45
Member Avatar for SC7639
Member Avatar for sckret Benji
Member Avatar for Dani

> is remove() or hide() even marginally faster than the other? Theoretically hide should be faster. Run a test and find out.

Member Avatar for Dani
0
218
Member Avatar for centenond

Check if the default document is set to `index.php`, either in the htaccess or in your hosting control panel.

Member Avatar for centenond
0
247
Member Avatar for Acurapassion
Member Avatar for Acurapassion
0
255
Member Avatar for pritaeas

Did something change to the API OAuth flow? When I try to login with my app (dwapi.pritaeas.net), and click "continue" on the authorize page, I get to the Oops page. Haven't used it in a while, but am not aware of any changes I have missed.

Member Avatar for Dani
0
292
Member Avatar for malatamil
Member Avatar for Taywin
0
264
Member Avatar for Ivzirnalsradeys
Member Avatar for hanspeare_1
Member Avatar for davy_yg

> $_REQUEST['delete']=='yes' && isset($_REQUEST['delete']) These need to be reversed. First check if it's set, then use it, not the other way around.

Member Avatar for pritaeas
0
63
Member Avatar for hxinen

There are several code snippets about this. Browse [here](https://www.daniweb.com/web-development/code/_/31)

Member Avatar for pritaeas
0
186
Member Avatar for Chem_1
Member Avatar for ekloh

Is the application database the only one that changes, or do they both change and you want to merge them at a later point in time? The first option could be easy enough. You need to insert the missing PK's. For changed records, it would be wise to implement a …

Member Avatar for pritaeas
0
51
Member Avatar for Alexsmash
Member Avatar for Clif40RD
Member Avatar for centenond

Use `mysqldump` or phpMyAdmin to export the database to script. Then you should be able to execute that script online.

Member Avatar for centenond
0
132
Member Avatar for divyakrishnan

Have you tried just: $rs = mysql_query( 'SELECT @totalcount' ) or die(mysql_error()); Also note that you are fetching twice. Once is enough.

Member Avatar for divyakrishnan
0
4K
Member Avatar for iqra aslam
Member Avatar for phpBeginner4

> i need the regular expression pattern equivalent the above php string function. What have you tried?

Member Avatar for diafol
0
425
Member Avatar for James_30
Member Avatar for James_30
0
154
Member Avatar for abelingaw

> Its suppose to increment by 1, say EMP0003 and so on. So where is the `+ 1` ?

Member Avatar for pritaeas
0
638
Member Avatar for Nabeel_1

Start by changing line 18 to: $con=mysql_connect("localhost","root","","firstphp") or die(mysql_error()); and line 29 to: $result = mysql_query($sql) or die(mysql_error); You'll see that your query is missing single quotes around your string/varchar values (and perhaps password is misspelled). Remove lines 31-33 because they execute the query again, and then use a mysql**i** …

Member Avatar for pritaeas
0
457
Member Avatar for senjoy2003

From the [manual](http://php.net/setcookie): *"Like other headers, cookies must be sent before any output from your script (this is a protocol restriction). This requires that you place calls to this function prior to any output, including <html> and <head> tags as well as any whitespace."*

Member Avatar for pritaeas
0
114
Member Avatar for <M/>
Member Avatar for ebanbury

Am not sure if this is the cause, but your RSS feed has invalid tags. It could be causing the problems, I've seen it before. If you view the source in the browser, how does it look (with the WHERE clause) ?

Member Avatar for guruparthi
0
1K
Member Avatar for rjusman90
Member Avatar for diafol
0
189
Member Avatar for gbwust
Member Avatar for santunu23
Member Avatar for balekke
Member Avatar for PsychicTide

How have you created your online database? It should state somewhere how you would access it.

Member Avatar for PsychicTide
0
664
Member Avatar for davy_yg

Am pretty sure that Microsoft will not allow you to do this via telnet. Be careful not to be considered trying to hack their servers.

Member Avatar for pritaeas
0
221
Member Avatar for pritaeas

I've been looking for a while for an example that uses claims, but I need it working in a desktop application and/or WCF service (a full local setup). MS and others say it should work, but examples are apparently well hidden within the depths of the internet. All I can …

0
107
Member Avatar for ih8bugz

Something like this perhaps? https://zapier.com/zapbook/callfire/zoho-crm/

Member Avatar for vegaseat
0
136
Member Avatar for Khadim_2

> How can I read and print the content o the file. $yourArray['content'] Probably contains the binary file. You need to save it before you can open it.

Member Avatar for almostbob
0
125

The End.