i have simple contact page set form , sending details via email using php mail() function. when submit page works fine , email sends data no problems. however once has done popup in browser says: "the page @ (address) says: e-mail can not sent!" even though message not true , email sends fine need stop appearing halts page's execution , no more code ran after this. can't seem find error on google. here mail code anyway in case me causing it. $headers = "from: ".$email."\r\n"; $headers .= "content-type: text/html; charset=iso-8859-1\r\n"; $msg = ' <html> <body> <strong>enquiry www.mysite.com website</strong><br /><br /> <strong>name:</strong> '.$fullname.' <br /> <strong>email:</strong> '.$email.' <br /> <strong>phone:</strong> '.$phone.' <br /> <strong>message:</strong> '.$message....
i new qt. working on graphics. i using qwidget drawing graphics(for drawing graphics in qwidget paint event). need draw background , foreground graphics. background fixed graphics. foregrounds drawing lines. each 100 millisecond need draw 20points. drawing time 8 sec. total need draw 1600 points (total points represents contentious line). i using qtimer invoke drawing in each 100ms. first few drawing drawn fast. in middle of drawing it's become slow. the problem need draw foreground , background in each 100ms. please me fix problem. if 1 have sample code please provide. in advance. is there way draw partial area ie. particular modified region of graphics? qpainter-drawing can slow without hardware support. using qgraphicsview won't if lines visible, since internally uses qpainter anyway. if have draw 20 new points (or lines) per update , per update background gets cleared have render again, there few things try: 1) disable background autofill. see...
Comments
Post a Comment