[PHP-WIN] Access javascript from php

2006-04-04 Thread Alf Stockton
I have written my program in such a way that all the html is separate from my php but now I need to include a piece of javascript within the php but the php is very unhappy with

RE: [PHP-WIN] Access javascript from php

2006-04-04 Thread Matt Murphy
?>

Re: [PHP-WIN] Access javascript from php

2006-04-04 Thread David Collard
Try echo "..."; Matt Murphy wrote: ?>

[PHP-WIN] PHP 4.4.2 Install on IIS6

2006-04-04 Thread Jeff Chastain
I am trying to install PHP 4.4.2 on a Windows 2003 IIS 6 box. However, when I try to browse the test php page to verify everything works, I simply get the message "The specified procedure could not be found.". I commented out all of the extensions in the php.ini file, restarted IIS, and still get

RE: [PHP-WIN] PHP 4.4.2 Install on IIS6

2006-04-04 Thread Jeff Chastain
Never mind, I messed up in the IIS configuration. Thanks. -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 04, 2006 9:12 PM To: php-windows@lists.php.net Subject: [PHP-WIN] PHP 4.4.2 Install on IIS6 I am trying to install PHP 4.4.2 on a Windows 200

Re: [PHP-WIN] Access javascript from php

2006-04-04 Thread dale
Try these: function redirect($url){ echo "window.navigate('".$url."')"; return; } function open($url){ echo "window.open('".$url."');"; return; } function script($script){ echo