Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #16.0K
Ranked #3K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

13 Posted Topics

Member Avatar for Rankenian

Options: 1. Install Sendmail or a similar SMTP server or 2. Use the SMTP settings from your email account. (so PHP will connect to your outgoing mail server just like your email programs do)

Member Avatar for maiese
0
167
Member Avatar for microtekblue

I know the error, but not specifically how to fix for wordpress. The error is because XML parsers expect the <?xml> tag to be the very first thing in the file. Your file is either blank, or has a blank line inserted before that tag. If it is something you …

Member Avatar for ritgrad83
0
185
Member Avatar for aquilai
Member Avatar for hbmarar

Can you post what you've done? I have a site using UTF-8, and it took me a while to get it sorted out. Is your backend database ALSO utf-8? That made a *huge* difference for me. making sure my takes had default charset utf8 don't try and retro-actively change the …

Member Avatar for Member #210412
0
307
Member Avatar for Sofo

Worst/Quickest/Unelegant method? (assuming you don't just make a console app) 1. Drop a TTimer on the form 2. In the OnTimer event: Timer1.enabled=false; SendEmail(); <-- whatever it is you do self.close Better/More elegant: If your email has an event "OnSent" or something, you could call self.close there. Best: console application. …

Member Avatar for Duoas
0
177
Member Avatar for drsmith
Member Avatar for drsmith
0
304
Member Avatar for DavidNYC

use ODBC/OLEDB to talk directly to the database from PHP (if PHP is on a windows machine). You can't execute any functions in the mdb, but you could insert keys/etc into the database that could be checked later.

Member Avatar for bigattichouse
0
40
Member Avatar for srijesh

Honestly. I'd use xmlhttp (Ajax) and do it on the server. If you *need* it to be hidden from the user, then COMPLETELY hide it from the user by removing it from the page. Just have ONCHANGE call an xmlhttp function with only the apropriate user/date, and your php page …

Member Avatar for bigattichouse
0
97
Member Avatar for fernandodonster
Re: Gd

When you see this error, take out the content-type declaration, You're probably getting an error from PHP, but because of content-type the browser is preventing you from seeing what is wrong. // header("Content-type: image/png"); <-- comment out. When you get a bunch of text with PNG on the front, you …

Member Avatar for bigattichouse
0
109
Member Avatar for Labby77

If you feel that you don't want your pages to show as .php, but you still want to have dynamic content, you may want to check mod_rewrite as an an extension to Apache (which can accept urls in "static" format and then call php locally.

Member Avatar for Member #210412
0
109
Member Avatar for aso186

If this URL is correct products.php?product=string Then this: $_REQUEST['product[B]s[/B]'] should be $_REQUEST['product']

Member Avatar for bigattichouse
0
349
Member Avatar for ta5na

[QUOTE=ta5na;456678] if (mysql_num_rows([B]S[/B]result) > 0) [/QUOTE] Should be if (mysql_num_rows([B]$[/B]result) > 0)

Member Avatar for bigattichouse
0
131
Member Avatar for still_learning

try: mysql -pPASSWORD -u username < filename example: mysql -u cs301 -pweb

Member Avatar for bigattichouse
0
75

The End.