[nyphp-talk] PHP HTTP POST not working

2008-01-16 Thread Jason Sia
I am transferring to a new server, my code in php using curl with http post works very well. However, when I transferred the file to the new server it does not work anymore. I tried if php curl is working by simply accessing a webpage and displaying its contents but with no http post, it works

Re: [nyphp-talk] Emailing from a PHP script

2007-09-14 Thread Jason Sia
Based on experience, a lot of ISPs are blocking external access to their SMTPs. However, you could also try using your ISPs SMTP - Original Message From: Ajai Khattri <[EMAIL PROTECTED]> To: NYPHP Talk Sent: Saturday, September 15, 2007 1:57:14 AM Subject: Re: [nyphp-talk] Emailing fro

Re: [nyphp-talk] Emailing from a PHP script

2007-09-14 Thread Jason Sia
ndows?? Paul - Original Message ----- From: Jason Sia To: NYPHP Talk Sent: Friday, September 14, 2007 4:00 PM Subject: Re: [nyphp-talk] Emailing from a PHP script ok that will not really work you should use SMTP=localhost then download QK SMTP Server t

Re: [nyphp-talk] Emailing from a PHP script

2007-09-14 Thread Jason Sia
DIV { MARGIN:0px;} Yes, that is correct. Has this anything to do with my problem? - Original Message - From: Jason Sia To: NYPHP Talk Sent: Friday, September 14, 2007 3:24 PM Subject: Re: [nyphp-talk] Emailing from a PHP script you are

Re: [nyphp-talk] Emailing from a PHP script

2007-09-14 Thread Jason Sia
you are just using XAMPP for windows right? - Original Message From: Ken Robinson <[EMAIL PROTECTED]> To: NYPHP Talk Sent: Friday, September 14, 2007 9:32:07 PM Subject: Re: [nyphp-talk] Emailing from a PHP script At 09:09 AM 9/14/2007, PaulCheung wrote: >Can anybody see what I am doing

Re: [nyphp-talk] Roll ove image

2007-09-07 Thread Jason Sia
Hi, You can create function like this: function Enlarge() //enlarge the image { document.getElementById('image').style.width=??; document.getElementById('image').style.height=??; } function Reduce() //reduce the image { document.getElementById('image').style.width

Re: [nyphp-talk] Mouse Over Menu

2007-09-07 Thread Jason Sia
Hi, You could try the hover effect but for Internet Explorer you should add a behavior (download csshover.htc) to make hover work in IE . You should use for this. - Original Message From: Urb LeJeune <[EMAIL PROTECTED]> To: NYPHP Talk Sent: Saturday, September 8, 2007 10:11:22 AM S

Re: [nyphp-talk] php gd problem

2007-08-24 Thread Jason Sia
if($imagetype=="jpg" || $imagetype=="png"){ imagedestroy($background); imagedestroy($image); } ?> - Original Message From: Dan Cech <[EMAIL PROTECTED]> To: NYPHP Talk Sent: Friday, August 24, 2007 9:34:41 PM Subject: Re: [nyphp-talk] php gd problem Jason Sia

[nyphp-talk] php gd problem

2007-08-23 Thread Jason Sia
Hi, I created a drawing application flash using actionscript then I wanted to save the drawing in a jpg file. I succefulkly saved the file however upon looking at the output image, the output is not smooth, I used imagefillpolygon for lines thicker than 1px coz according to php.net imagesetthi